amendment-xls34d

add transfer rate

Update definitions.json

update test error text

update validation error

fix undefined validation

switch claim signing order, update claim object

update workflow docker

tests (paychan + escrow)

add ic gateway (test)

add faucet

update sdk

fixup git-workflow
This commit is contained in:
dangell7
2023-01-08 22:39:12 -05:00
committed by Denis Angell
parent 8abcfe4640
commit 5541632b7f
21 changed files with 394 additions and 55 deletions

View File

@@ -1,5 +1,6 @@
/* eslint-disable complexity -- Necessary for validateEscrowCreate */
import { ValidationError } from '../../errors'
import { Amount } from '../common'
import { BaseTransaction, validateBaseTransaction } from './common'
@@ -15,7 +16,7 @@ export interface EscrowCreate extends BaseTransaction {
* Once escrowed, the XRP can either go to the Destination address (after the.
* FinishAfter time) or returned to the sender (after the CancelAfter time).
*/
Amount: string
Amount: Amount
/** Address to receive escrowed XRP. */
Destination: string
/**