From 1dbf35dbcb6b525de28a1b3995f1a5b04d40ee6a Mon Sep 17 00:00:00 2001 From: Denis Angell Date: Sun, 19 May 2024 11:18:03 +0200 Subject: [PATCH] Update remit.ts --- packages/xrpl/src/models/transactions/remit.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/xrpl/src/models/transactions/remit.ts b/packages/xrpl/src/models/transactions/remit.ts index fbbc8648..80d7136a 100644 --- a/packages/xrpl/src/models/transactions/remit.ts +++ b/packages/xrpl/src/models/transactions/remit.ts @@ -32,6 +32,10 @@ export interface Remit extends BaseTransaction { * */ MintURIToken?: MintURIToken + /** + * + */ + URITokenIDs?: string[] /** * Arbitrary 256-bit hash representing a specific reason or identifier for * this payment. @@ -69,7 +73,7 @@ export function validateRemit(tx: Record): void { if (tx.DestinationTag != null && typeof tx.DestinationTag !== 'number') { throw new ValidationError('Remit: DestinationTag must be a number') } - if (tx.Inform === tx.Account || tx.inform === tx.Destination) { + if (tx.Inform === tx.Account || tx.Inform === tx.Destination) { throw new ValidationError( 'Remit: Inform must not be equal to the account or destination', )