Update release notes

This commit is contained in:
Elliot Lee
2018-09-11 18:45:52 -07:00
parent 9eec98778f
commit 79971f906b
6 changed files with 26 additions and 14 deletions

View File

@@ -1,6 +1,6 @@
## deriveAddress
`deriveAddress(publicKey: string) : string
`deriveAddress(publicKey: string): string`
Derive an XRP Ledger address from a public key.

View File

@@ -1,6 +1,6 @@
## deriveKeypair
`deriveKeypair(seed: string) : {privateKey: string, publicKey: string}`
`deriveKeypair(seed: string): {privateKey: string, publicKey: string}`
Derive a public and private key from a seed.

View File

@@ -1,12 +1,12 @@
## isValidAddress
`isValidAddress(address: string) : boolean
`isValidAddress(address: string): boolean`
Checks if the specified string contains a valid ledger address.
Checks if the specified string contains a valid address.
### Parameters
This method takes one parameter, the address which to validate.
This method takes one parameter, the address to validate.
### Return Value

View File

@@ -1,8 +1,8 @@
## isValidSecret
`isValidSecret(secret: string) : boolean
`isValidSecret(secret: string): boolean`
Checks if the specified string contains a valid ledger secret.
Checks if the specified string contains a valid secret.
### Parameters