Skip to content

Commit

Permalink
feat: modify xrpl signature return values
Browse files Browse the repository at this point in the history
  • Loading branch information
Polybius93 committed Oct 31, 2024
1 parent ff059c0 commit 089d95a
Show file tree
Hide file tree
Showing 3 changed files with 215 additions and 89 deletions.
14 changes: 14 additions & 0 deletions src/models/ripple.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,17 @@ export interface SignResponse {
tx_blob: string;
hash: string;
}

export interface AutoFillValues {
signatureType: SignatureType;
LastLedgerSequence: number;
Sequence: number;
Fee: string;
}

export type SignatureType = 'cashCheck' | 'burnNFT' | 'mintNFT' | 'mintToken';

export interface MultisignatureTransactionResponse {
tx_blob: string;
autoFillValues: AutoFillValues;
}
Loading

0 comments on commit 089d95a

Please sign in to comment.