Skip to content

Commit

Permalink
Support multisig for XRPL txs
Browse files Browse the repository at this point in the history
  • Loading branch information
sosaucily committed Oct 7, 2024
1 parent 46216c7 commit e67a4a5
Show file tree
Hide file tree
Showing 2 changed files with 319 additions and 220 deletions.
14 changes: 14 additions & 0 deletions src/models/ethereum-models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,20 @@ export interface RawVault {
taprootPubKey: string;
}

export interface SSPVaultUpdate {
status: number;
wdTxId: string;
taprootPubKey: string;
}

export interface SSFVaultUpdate {
status: number;
fundingTxId: string;
wdTxId: string;
valueMinted: bigint;
valueLocked: bigint;
}

interface EthereumContract {
name: string;
address: string;
Expand Down
Loading

0 comments on commit e67a4a5

Please sign in to comment.