@dfns/sdk 0.5.6 → 0.5.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,7 @@
1
1
  export type BroadcastTransactionBody = {
2
2
  kind: "Transaction";
3
3
  transaction: string;
4
+ externalId?: string | undefined;
4
5
  } | {
5
6
  kind: "Evm";
6
7
  to?: string | undefined;
@@ -8,6 +9,7 @@ export type BroadcastTransactionBody = {
8
9
  data?: string | undefined;
9
10
  nonce?: (number | string | string) | undefined;
10
11
  gasLimit?: (string | string) | undefined;
12
+ externalId?: string | undefined;
11
13
  } | {
12
14
  kind: "Eip1559";
13
15
  to?: string | undefined;
@@ -17,6 +19,7 @@ export type BroadcastTransactionBody = {
17
19
  gasLimit?: (string | string) | undefined;
18
20
  maxFeePerGas?: (string | string) | undefined;
19
21
  maxPriorityFeePerGas?: (string | string) | undefined;
22
+ externalId?: string | undefined;
20
23
  } | {
21
24
  kind: "EvmLegacy";
22
25
  to?: string | undefined;
@@ -25,9 +28,11 @@ export type BroadcastTransactionBody = {
25
28
  nonce?: (number | string | string) | undefined;
26
29
  gasLimit?: (string | string) | undefined;
27
30
  gasPrice?: (string | string) | undefined;
31
+ externalId?: string | undefined;
28
32
  } | {
29
33
  kind: "Psbt";
30
34
  psbt: string;
35
+ externalId?: string | undefined;
31
36
  };
32
37
  export type BroadcastTransactionParams = {
33
38
  walletId: string;
@@ -35,7 +40,7 @@ export type BroadcastTransactionParams = {
35
40
  export type BroadcastTransactionResponse = {
36
41
  id: string;
37
42
  walletId: string;
38
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
43
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
39
44
  requester: {
40
45
  userId: string;
41
46
  tokenId?: string | undefined;
@@ -44,6 +49,7 @@ export type BroadcastTransactionResponse = {
44
49
  requestBody: {
45
50
  kind: "Transaction";
46
51
  transaction: string;
52
+ externalId?: string | undefined;
47
53
  } | {
48
54
  kind: "Evm";
49
55
  to?: string | undefined;
@@ -51,6 +57,7 @@ export type BroadcastTransactionResponse = {
51
57
  data?: string | undefined;
52
58
  nonce?: (number | string | string) | undefined;
53
59
  gasLimit?: (string | string) | undefined;
60
+ externalId?: string | undefined;
54
61
  } | {
55
62
  kind: "Eip1559";
56
63
  to?: string | undefined;
@@ -60,6 +67,7 @@ export type BroadcastTransactionResponse = {
60
67
  gasLimit?: (string | string) | undefined;
61
68
  maxFeePerGas?: (string | string) | undefined;
62
69
  maxPriorityFeePerGas?: (string | string) | undefined;
70
+ externalId?: string | undefined;
63
71
  } | {
64
72
  kind: "EvmLegacy";
65
73
  to?: string | undefined;
@@ -68,9 +76,11 @@ export type BroadcastTransactionResponse = {
68
76
  nonce?: (number | string | string) | undefined;
69
77
  gasLimit?: (string | string) | undefined;
70
78
  gasPrice?: (string | string) | undefined;
79
+ externalId?: string | undefined;
71
80
  } | {
72
81
  kind: "Psbt";
73
82
  psbt: string;
83
+ externalId?: string | undefined;
74
84
  };
75
85
  status: "Pending" | "Executing" | "Broadcasted" | "Confirmed" | "Failed" | "Rejected";
76
86
  reason?: string | undefined;
@@ -81,12 +91,13 @@ export type BroadcastTransactionResponse = {
81
91
  datePolicyResolved?: string | undefined;
82
92
  dateBroadcasted?: string | undefined;
83
93
  dateConfirmed?: string | undefined;
94
+ externalId?: string | undefined;
84
95
  };
85
96
  export type BroadcastTransactionRequest = BroadcastTransactionParams & {
86
97
  body: BroadcastTransactionBody;
87
98
  };
88
99
  export type CreateWalletBody = {
89
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismSepolia" | "Origyn" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "ArbitrumGoerli" | "BaseGoerli" | "Cardano" | "CardanoPreprod" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "OptimismGoerli" | "Polkadot" | "Westend" | "Tezos" | "TezosGhostnet" | "XrpLedger" | "XrpLedgerTestnet" | "KeyEdDSA" | "KeyECDSA" | "KeyECDSAStark";
100
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismSepolia" | "Origyn" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "ArbitrumGoerli" | "BaseGoerli" | "Cardano" | "CardanoPreprod" | "Kusama" | "OptimismGoerli" | "Polkadot" | "Westend" | "Tezos" | "TezosGhostnet" | "XrpLedger" | "XrpLedgerTestnet" | "KeyEdDSA" | "KeyECDSA" | "KeyECDSAStark";
90
101
  name?: string | undefined;
91
102
  delegateTo?: string | undefined;
92
103
  delayDelegation?: boolean | undefined;
@@ -95,7 +106,7 @@ export type CreateWalletBody = {
95
106
  };
96
107
  export type CreateWalletResponse = {
97
108
  id: string;
98
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
109
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
99
110
  address?: string | undefined;
100
111
  signingKey: {
101
112
  scheme: "ECDSA" | "EdDSA";
@@ -131,7 +142,7 @@ export type DelegateWalletRequest = DelegateWalletParams & {
131
142
  export type ExportWalletBody = {
132
143
  encryptionKey: string;
133
144
  supportedSchemes: {
134
- protocol: "CGGMP21" | "FROST" | "FROST_BITCOIN";
145
+ protocol: "CGGMP21" | "FROST" | "FROST_BITCOIN" | "KU23";
135
146
  curve: "ed25519" | "secp256k1" | "stark";
136
147
  }[];
137
148
  };
@@ -142,7 +153,7 @@ export type ExportWalletResponse = {
142
153
  publicKey: string;
143
154
  /** The TSS threshold of the wallet private signing key shares */
144
155
  minSigners: number;
145
- protocol: "CGGMP21" | "FROST" | "FROST_BITCOIN";
156
+ protocol: "CGGMP21" | "FROST" | "FROST_BITCOIN" | "KU23";
146
157
  curve: "ed25519" | "secp256k1" | "stark";
147
158
  /** Keyshares of the exported wallet. They are encrypted with the provided encryption key. The exported private key is re-constructed from these keyshares. */
148
159
  encryptedKeyShares: {
@@ -156,14 +167,21 @@ export type ExportWalletRequest = ExportWalletParams & {
156
167
  body: ExportWalletBody;
157
168
  };
158
169
  export type GenerateSignatureBody = {
170
+ kind: "SignDocDirect";
171
+ signDoc: string;
172
+ externalId?: string | undefined;
173
+ } | {
159
174
  kind: "Hash";
160
175
  hash: string;
176
+ externalId?: string | undefined;
161
177
  } | {
162
178
  kind: "Message";
163
179
  message: string;
180
+ externalId?: string | undefined;
164
181
  } | {
165
182
  kind: "Transaction";
166
183
  transaction: string;
184
+ externalId?: string | undefined;
167
185
  } | {
168
186
  kind: "Eip712";
169
187
  types: {
@@ -182,9 +200,16 @@ export type GenerateSignatureBody = {
182
200
  message: {
183
201
  [x: string]: unknown;
184
202
  };
203
+ externalId?: string | undefined;
185
204
  } | {
186
205
  kind: "Psbt";
187
206
  psbt: string;
207
+ externalId?: string | undefined;
208
+ } | {
209
+ kind: "Bip322";
210
+ message: string;
211
+ format?: ("Simple" | "Full") | undefined;
212
+ externalId?: string | undefined;
188
213
  };
189
214
  export type GenerateSignatureParams = {
190
215
  walletId: string;
@@ -192,21 +217,28 @@ export type GenerateSignatureParams = {
192
217
  export type GenerateSignatureResponse = {
193
218
  id: string;
194
219
  walletId: string;
195
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
220
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
196
221
  requester: {
197
222
  userId: string;
198
223
  tokenId?: string | undefined;
199
224
  appId?: string | undefined;
200
225
  };
201
226
  requestBody: {
227
+ kind: "SignDocDirect";
228
+ signDoc: string;
229
+ externalId?: string | undefined;
230
+ } | {
202
231
  kind: "Hash";
203
232
  hash: string;
233
+ externalId?: string | undefined;
204
234
  } | {
205
235
  kind: "Message";
206
236
  message: string;
237
+ externalId?: string | undefined;
207
238
  } | {
208
239
  kind: "Transaction";
209
240
  transaction: string;
241
+ externalId?: string | undefined;
210
242
  } | {
211
243
  kind: "Eip712";
212
244
  types: {
@@ -225,9 +257,16 @@ export type GenerateSignatureResponse = {
225
257
  message: {
226
258
  [x: string]: unknown;
227
259
  };
260
+ externalId?: string | undefined;
228
261
  } | {
229
262
  kind: "Psbt";
230
263
  psbt: string;
264
+ externalId?: string | undefined;
265
+ } | {
266
+ kind: "Bip322";
267
+ message: string;
268
+ format?: ("Simple" | "Full") | undefined;
269
+ externalId?: string | undefined;
231
270
  };
232
271
  status: "Pending" | "Executing" | "Signed" | "Confirmed" | "Failed" | "Rejected";
233
272
  reason?: string | undefined;
@@ -251,6 +290,7 @@ export type GenerateSignatureResponse = {
251
290
  datePolicyResolved?: string | undefined;
252
291
  dateSigned?: string | undefined;
253
292
  dateConfirmed?: string | undefined;
293
+ externalId?: string | undefined;
254
294
  };
255
295
  export type GenerateSignatureRequest = GenerateSignatureParams & {
256
296
  body: GenerateSignatureBody;
@@ -262,21 +302,28 @@ export type GetSignatureParams = {
262
302
  export type GetSignatureResponse = {
263
303
  id: string;
264
304
  walletId: string;
265
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
305
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
266
306
  requester: {
267
307
  userId: string;
268
308
  tokenId?: string | undefined;
269
309
  appId?: string | undefined;
270
310
  };
271
311
  requestBody: {
312
+ kind: "SignDocDirect";
313
+ signDoc: string;
314
+ externalId?: string | undefined;
315
+ } | {
272
316
  kind: "Hash";
273
317
  hash: string;
318
+ externalId?: string | undefined;
274
319
  } | {
275
320
  kind: "Message";
276
321
  message: string;
322
+ externalId?: string | undefined;
277
323
  } | {
278
324
  kind: "Transaction";
279
325
  transaction: string;
326
+ externalId?: string | undefined;
280
327
  } | {
281
328
  kind: "Eip712";
282
329
  types: {
@@ -295,9 +342,16 @@ export type GetSignatureResponse = {
295
342
  message: {
296
343
  [x: string]: unknown;
297
344
  };
345
+ externalId?: string | undefined;
298
346
  } | {
299
347
  kind: "Psbt";
300
348
  psbt: string;
349
+ externalId?: string | undefined;
350
+ } | {
351
+ kind: "Bip322";
352
+ message: string;
353
+ format?: ("Simple" | "Full") | undefined;
354
+ externalId?: string | undefined;
301
355
  };
302
356
  status: "Pending" | "Executing" | "Signed" | "Confirmed" | "Failed" | "Rejected";
303
357
  reason?: string | undefined;
@@ -321,6 +375,7 @@ export type GetSignatureResponse = {
321
375
  datePolicyResolved?: string | undefined;
322
376
  dateSigned?: string | undefined;
323
377
  dateConfirmed?: string | undefined;
378
+ externalId?: string | undefined;
324
379
  };
325
380
  export type GetSignatureRequest = GetSignatureParams;
326
381
  export type GetTransactionParams = {
@@ -330,7 +385,7 @@ export type GetTransactionParams = {
330
385
  export type GetTransactionResponse = {
331
386
  id: string;
332
387
  walletId: string;
333
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
388
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
334
389
  requester: {
335
390
  userId: string;
336
391
  tokenId?: string | undefined;
@@ -339,6 +394,7 @@ export type GetTransactionResponse = {
339
394
  requestBody: {
340
395
  kind: "Transaction";
341
396
  transaction: string;
397
+ externalId?: string | undefined;
342
398
  } | {
343
399
  kind: "Evm";
344
400
  to?: string | undefined;
@@ -346,6 +402,7 @@ export type GetTransactionResponse = {
346
402
  data?: string | undefined;
347
403
  nonce?: (number | string | string) | undefined;
348
404
  gasLimit?: (string | string) | undefined;
405
+ externalId?: string | undefined;
349
406
  } | {
350
407
  kind: "Eip1559";
351
408
  to?: string | undefined;
@@ -355,6 +412,7 @@ export type GetTransactionResponse = {
355
412
  gasLimit?: (string | string) | undefined;
356
413
  maxFeePerGas?: (string | string) | undefined;
357
414
  maxPriorityFeePerGas?: (string | string) | undefined;
415
+ externalId?: string | undefined;
358
416
  } | {
359
417
  kind: "EvmLegacy";
360
418
  to?: string | undefined;
@@ -363,9 +421,11 @@ export type GetTransactionResponse = {
363
421
  nonce?: (number | string | string) | undefined;
364
422
  gasLimit?: (string | string) | undefined;
365
423
  gasPrice?: (string | string) | undefined;
424
+ externalId?: string | undefined;
366
425
  } | {
367
426
  kind: "Psbt";
368
427
  psbt: string;
428
+ externalId?: string | undefined;
369
429
  };
370
430
  status: "Pending" | "Executing" | "Broadcasted" | "Confirmed" | "Failed" | "Rejected";
371
431
  reason?: string | undefined;
@@ -376,6 +436,7 @@ export type GetTransactionResponse = {
376
436
  datePolicyResolved?: string | undefined;
377
437
  dateBroadcasted?: string | undefined;
378
438
  dateConfirmed?: string | undefined;
439
+ externalId?: string | undefined;
379
440
  };
380
441
  export type GetTransactionRequest = GetTransactionParams;
381
442
  export type GetTransferParams = {
@@ -385,7 +446,7 @@ export type GetTransferParams = {
385
446
  export type GetTransferResponse = {
386
447
  id: string;
387
448
  walletId: string;
388
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
449
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
389
450
  requester: {
390
451
  userId: string;
391
452
  tokenId?: string | undefined;
@@ -393,42 +454,50 @@ export type GetTransferResponse = {
393
454
  };
394
455
  requestBody: {
395
456
  kind: "Native";
396
- to: string | string | string | string | string | string | string | string | string | string | string | string | string | string;
457
+ to: string | string | string | string | string | string | string | string | string | string | string | string | string | string | string;
397
458
  amount: string;
398
459
  memo?: string | undefined;
399
460
  priority?: ("Slow" | "Standard" | "Fast") | undefined;
461
+ createDestinationAccount?: boolean | undefined;
462
+ externalId?: string | undefined;
400
463
  } | {
401
464
  kind: "Erc20";
402
465
  contract: string;
403
466
  to: string;
404
467
  amount: string;
405
468
  priority?: ("Slow" | "Standard" | "Fast") | undefined;
469
+ externalId?: string | undefined;
406
470
  } | {
407
471
  kind: "Erc721";
408
472
  contract: string;
409
473
  to: string;
410
474
  tokenId: string;
411
475
  priority?: ("Slow" | "Standard" | "Fast") | undefined;
476
+ externalId?: string | undefined;
412
477
  } | {
413
478
  kind: "Trc10";
414
479
  tokenId: string;
415
480
  to: string;
416
481
  amount: string;
482
+ externalId?: string | undefined;
417
483
  } | {
418
484
  kind: "Trc20";
419
485
  contract: string;
420
486
  to: string;
421
487
  amount: string;
488
+ externalId?: string | undefined;
422
489
  } | {
423
490
  kind: "Trc721";
424
491
  contract: string;
425
492
  to: string;
426
493
  tokenId: string;
494
+ externalId?: string | undefined;
427
495
  } | {
428
496
  kind: "Asa";
429
497
  assetId: string;
430
498
  to: string;
431
499
  amount: string;
500
+ externalId?: string | undefined;
432
501
  } | {
433
502
  kind: "Sep41";
434
503
  issuer: string;
@@ -436,18 +505,21 @@ export type GetTransferResponse = {
436
505
  to: string;
437
506
  amount: string;
438
507
  memo?: string | undefined;
508
+ externalId?: string | undefined;
439
509
  } | {
440
510
  kind: "Spl" | "Spl2022";
441
511
  to: string;
442
512
  amount: string;
443
513
  mint: string;
444
514
  createDestinationAccount?: boolean | undefined;
515
+ externalId?: string | undefined;
445
516
  } | {
446
517
  kind: "Tep74";
447
518
  to: string;
448
519
  master: string;
449
520
  amount: string;
450
521
  memo?: string | undefined;
522
+ externalId?: string | undefined;
451
523
  };
452
524
  metadata: {
453
525
  asset: {
@@ -468,6 +540,7 @@ export type GetTransferResponse = {
468
540
  dateBroadcasted?: string | undefined;
469
541
  dateConfirmed?: string | undefined;
470
542
  approvalId?: string | undefined;
543
+ externalId?: string | undefined;
471
544
  };
472
545
  export type GetTransferRequest = GetTransferParams;
473
546
  export type GetWalletParams = {
@@ -475,7 +548,7 @@ export type GetWalletParams = {
475
548
  };
476
549
  export type GetWalletResponse = {
477
550
  id: string;
478
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
551
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
479
552
  address?: string | undefined;
480
553
  signingKey: {
481
554
  scheme: "ECDSA" | "EdDSA";
@@ -498,7 +571,7 @@ export type GetWalletAssetsParams = {
498
571
  };
499
572
  export type GetWalletAssetsResponse = {
500
573
  walletId: string;
501
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
574
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
502
575
  assets: (({
503
576
  kind: "Native";
504
577
  } | {
@@ -540,11 +613,11 @@ export type GetWalletHistoryQuery = {
540
613
  };
541
614
  export type GetWalletHistoryResponse = {
542
615
  walletId: string;
543
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
616
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
544
617
  items: ({
545
618
  walletId: string;
546
619
  direction: "In" | "Out";
547
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
620
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
548
621
  blockNumber: number;
549
622
  txHash: string;
550
623
  index?: string | undefined;
@@ -584,7 +657,7 @@ export type GetWalletHistoryResponse = {
584
657
  } | {
585
658
  walletId: string;
586
659
  direction: "In" | "Out";
587
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
660
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
588
661
  blockNumber: number;
589
662
  txHash: string;
590
663
  index?: string | undefined;
@@ -619,7 +692,7 @@ export type GetWalletHistoryResponse = {
619
692
  } | {
620
693
  walletId: string;
621
694
  direction: "In" | "Out";
622
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
695
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
623
696
  blockNumber: number;
624
697
  txHash: string;
625
698
  index?: string | undefined;
@@ -657,7 +730,7 @@ export type GetWalletHistoryResponse = {
657
730
  } | {
658
731
  walletId: string;
659
732
  direction: "In" | "Out";
660
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
733
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
661
734
  blockNumber: number;
662
735
  txHash: string;
663
736
  index?: string | undefined;
@@ -693,7 +766,7 @@ export type GetWalletHistoryResponse = {
693
766
  } | {
694
767
  walletId: string;
695
768
  direction: "In" | "Out";
696
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
769
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
697
770
  blockNumber: number;
698
771
  txHash: string;
699
772
  index?: string | undefined;
@@ -729,7 +802,7 @@ export type GetWalletHistoryResponse = {
729
802
  } | {
730
803
  walletId: string;
731
804
  direction: "In" | "Out";
732
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
805
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
733
806
  blockNumber: number;
734
807
  txHash: string;
735
808
  index?: string | undefined;
@@ -761,7 +834,7 @@ export type GetWalletHistoryResponse = {
761
834
  } | {
762
835
  walletId: string;
763
836
  direction: "In" | "Out";
764
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
837
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
765
838
  blockNumber: number;
766
839
  txHash: string;
767
840
  index?: string | undefined;
@@ -793,7 +866,7 @@ export type GetWalletHistoryResponse = {
793
866
  } | {
794
867
  walletId: string;
795
868
  direction: "In" | "Out";
796
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
869
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
797
870
  blockNumber: number;
798
871
  txHash: string;
799
872
  index?: string | undefined;
@@ -825,7 +898,7 @@ export type GetWalletHistoryResponse = {
825
898
  } | {
826
899
  walletId: string;
827
900
  direction: "In" | "Out";
828
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
901
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
829
902
  blockNumber: number;
830
903
  txHash: string;
831
904
  index?: string | undefined;
@@ -857,7 +930,7 @@ export type GetWalletHistoryResponse = {
857
930
  } | {
858
931
  walletId: string;
859
932
  direction: "In" | "Out";
860
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
933
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
861
934
  blockNumber: number;
862
935
  txHash: string;
863
936
  index?: string | undefined;
@@ -889,7 +962,7 @@ export type GetWalletHistoryResponse = {
889
962
  } | {
890
963
  walletId: string;
891
964
  direction: "In" | "Out";
892
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
965
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
893
966
  blockNumber: number;
894
967
  txHash: string;
895
968
  index?: string | undefined;
@@ -928,7 +1001,7 @@ export type GetWalletNftsParams = {
928
1001
  };
929
1002
  export type GetWalletNftsResponse = {
930
1003
  walletId: string;
931
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
1004
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
932
1005
  nfts: ({
933
1006
  kind: "Asa";
934
1007
  assetId: string;
@@ -944,11 +1017,11 @@ export type GetWalletNftsResponse = {
944
1017
  };
945
1018
  export type GetWalletNftsRequest = GetWalletNftsParams;
946
1019
  export type ImportWalletBody = {
947
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismSepolia" | "Origyn" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "ArbitrumGoerli" | "BaseGoerli" | "Cardano" | "CardanoPreprod" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "OptimismGoerli" | "Polkadot" | "Westend" | "Tezos" | "TezosGhostnet" | "XrpLedger" | "XrpLedgerTestnet" | "KeyEdDSA" | "KeyECDSA" | "KeyECDSAStark";
1020
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismSepolia" | "Origyn" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "ArbitrumGoerli" | "BaseGoerli" | "Cardano" | "CardanoPreprod" | "Kusama" | "OptimismGoerli" | "Polkadot" | "Westend" | "Tezos" | "TezosGhostnet" | "XrpLedger" | "XrpLedgerTestnet" | "KeyEdDSA" | "KeyECDSA" | "KeyECDSAStark";
948
1021
  name?: string | undefined;
949
1022
  externalId?: string | undefined;
950
1023
  curve: "ed25519" | "secp256k1" | "stark";
951
- protocol: "CGGMP21" | "FROST" | "FROST_BITCOIN";
1024
+ protocol: "CGGMP21" | "FROST" | "FROST_BITCOIN" | "KU23";
952
1025
  minSigners: number;
953
1026
  encryptedKeyShares: {
954
1027
  signerId: string;
@@ -957,7 +1030,7 @@ export type ImportWalletBody = {
957
1030
  };
958
1031
  export type ImportWalletResponse = {
959
1032
  id: string;
960
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
1033
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
961
1034
  address?: string | undefined;
962
1035
  signingKey: {
963
1036
  scheme: "ECDSA" | "EdDSA";
@@ -989,21 +1062,28 @@ export type ListSignaturesResponse = {
989
1062
  items: {
990
1063
  id: string;
991
1064
  walletId: string;
992
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
1065
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
993
1066
  requester: {
994
1067
  userId: string;
995
1068
  tokenId?: string | undefined;
996
1069
  appId?: string | undefined;
997
1070
  };
998
1071
  requestBody: {
1072
+ kind: "SignDocDirect";
1073
+ signDoc: string;
1074
+ externalId?: string | undefined;
1075
+ } | {
999
1076
  kind: "Hash";
1000
1077
  hash: string;
1078
+ externalId?: string | undefined;
1001
1079
  } | {
1002
1080
  kind: "Message";
1003
1081
  message: string;
1082
+ externalId?: string | undefined;
1004
1083
  } | {
1005
1084
  kind: "Transaction";
1006
1085
  transaction: string;
1086
+ externalId?: string | undefined;
1007
1087
  } | {
1008
1088
  kind: "Eip712";
1009
1089
  types: {
@@ -1022,9 +1102,16 @@ export type ListSignaturesResponse = {
1022
1102
  message: {
1023
1103
  [x: string]: unknown;
1024
1104
  };
1105
+ externalId?: string | undefined;
1025
1106
  } | {
1026
1107
  kind: "Psbt";
1027
1108
  psbt: string;
1109
+ externalId?: string | undefined;
1110
+ } | {
1111
+ kind: "Bip322";
1112
+ message: string;
1113
+ format?: ("Simple" | "Full") | undefined;
1114
+ externalId?: string | undefined;
1028
1115
  };
1029
1116
  status: "Pending" | "Executing" | "Signed" | "Confirmed" | "Failed" | "Rejected";
1030
1117
  reason?: string | undefined;
@@ -1048,6 +1135,7 @@ export type ListSignaturesResponse = {
1048
1135
  datePolicyResolved?: string | undefined;
1049
1136
  dateSigned?: string | undefined;
1050
1137
  dateConfirmed?: string | undefined;
1138
+ externalId?: string | undefined;
1051
1139
  }[];
1052
1140
  nextPageToken?: string | undefined;
1053
1141
  };
@@ -1066,7 +1154,7 @@ export type ListTransactionsResponse = {
1066
1154
  items: {
1067
1155
  id: string;
1068
1156
  walletId: string;
1069
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
1157
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
1070
1158
  requester: {
1071
1159
  userId: string;
1072
1160
  tokenId?: string | undefined;
@@ -1075,6 +1163,7 @@ export type ListTransactionsResponse = {
1075
1163
  requestBody: {
1076
1164
  kind: "Transaction";
1077
1165
  transaction: string;
1166
+ externalId?: string | undefined;
1078
1167
  } | {
1079
1168
  kind: "Evm";
1080
1169
  to?: string | undefined;
@@ -1082,6 +1171,7 @@ export type ListTransactionsResponse = {
1082
1171
  data?: string | undefined;
1083
1172
  nonce?: (number | string | string) | undefined;
1084
1173
  gasLimit?: (string | string) | undefined;
1174
+ externalId?: string | undefined;
1085
1175
  } | {
1086
1176
  kind: "Eip1559";
1087
1177
  to?: string | undefined;
@@ -1091,6 +1181,7 @@ export type ListTransactionsResponse = {
1091
1181
  gasLimit?: (string | string) | undefined;
1092
1182
  maxFeePerGas?: (string | string) | undefined;
1093
1183
  maxPriorityFeePerGas?: (string | string) | undefined;
1184
+ externalId?: string | undefined;
1094
1185
  } | {
1095
1186
  kind: "EvmLegacy";
1096
1187
  to?: string | undefined;
@@ -1099,9 +1190,11 @@ export type ListTransactionsResponse = {
1099
1190
  nonce?: (number | string | string) | undefined;
1100
1191
  gasLimit?: (string | string) | undefined;
1101
1192
  gasPrice?: (string | string) | undefined;
1193
+ externalId?: string | undefined;
1102
1194
  } | {
1103
1195
  kind: "Psbt";
1104
1196
  psbt: string;
1197
+ externalId?: string | undefined;
1105
1198
  };
1106
1199
  status: "Pending" | "Executing" | "Broadcasted" | "Confirmed" | "Failed" | "Rejected";
1107
1200
  reason?: string | undefined;
@@ -1112,6 +1205,7 @@ export type ListTransactionsResponse = {
1112
1205
  datePolicyResolved?: string | undefined;
1113
1206
  dateBroadcasted?: string | undefined;
1114
1207
  dateConfirmed?: string | undefined;
1208
+ externalId?: string | undefined;
1115
1209
  }[];
1116
1210
  nextPageToken?: string | undefined;
1117
1211
  };
@@ -1130,7 +1224,7 @@ export type ListTransfersResponse = {
1130
1224
  items: {
1131
1225
  id: string;
1132
1226
  walletId: string;
1133
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
1227
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
1134
1228
  requester: {
1135
1229
  userId: string;
1136
1230
  tokenId?: string | undefined;
@@ -1138,42 +1232,50 @@ export type ListTransfersResponse = {
1138
1232
  };
1139
1233
  requestBody: {
1140
1234
  kind: "Native";
1141
- to: string | string | string | string | string | string | string | string | string | string | string | string | string | string;
1235
+ to: string | string | string | string | string | string | string | string | string | string | string | string | string | string | string;
1142
1236
  amount: string;
1143
1237
  memo?: string | undefined;
1144
1238
  priority?: ("Slow" | "Standard" | "Fast") | undefined;
1239
+ createDestinationAccount?: boolean | undefined;
1240
+ externalId?: string | undefined;
1145
1241
  } | {
1146
1242
  kind: "Erc20";
1147
1243
  contract: string;
1148
1244
  to: string;
1149
1245
  amount: string;
1150
1246
  priority?: ("Slow" | "Standard" | "Fast") | undefined;
1247
+ externalId?: string | undefined;
1151
1248
  } | {
1152
1249
  kind: "Erc721";
1153
1250
  contract: string;
1154
1251
  to: string;
1155
1252
  tokenId: string;
1156
1253
  priority?: ("Slow" | "Standard" | "Fast") | undefined;
1254
+ externalId?: string | undefined;
1157
1255
  } | {
1158
1256
  kind: "Trc10";
1159
1257
  tokenId: string;
1160
1258
  to: string;
1161
1259
  amount: string;
1260
+ externalId?: string | undefined;
1162
1261
  } | {
1163
1262
  kind: "Trc20";
1164
1263
  contract: string;
1165
1264
  to: string;
1166
1265
  amount: string;
1266
+ externalId?: string | undefined;
1167
1267
  } | {
1168
1268
  kind: "Trc721";
1169
1269
  contract: string;
1170
1270
  to: string;
1171
1271
  tokenId: string;
1272
+ externalId?: string | undefined;
1172
1273
  } | {
1173
1274
  kind: "Asa";
1174
1275
  assetId: string;
1175
1276
  to: string;
1176
1277
  amount: string;
1278
+ externalId?: string | undefined;
1177
1279
  } | {
1178
1280
  kind: "Sep41";
1179
1281
  issuer: string;
@@ -1181,18 +1283,21 @@ export type ListTransfersResponse = {
1181
1283
  to: string;
1182
1284
  amount: string;
1183
1285
  memo?: string | undefined;
1286
+ externalId?: string | undefined;
1184
1287
  } | {
1185
1288
  kind: "Spl" | "Spl2022";
1186
1289
  to: string;
1187
1290
  amount: string;
1188
1291
  mint: string;
1189
1292
  createDestinationAccount?: boolean | undefined;
1293
+ externalId?: string | undefined;
1190
1294
  } | {
1191
1295
  kind: "Tep74";
1192
1296
  to: string;
1193
1297
  master: string;
1194
1298
  amount: string;
1195
1299
  memo?: string | undefined;
1300
+ externalId?: string | undefined;
1196
1301
  };
1197
1302
  metadata: {
1198
1303
  asset: {
@@ -1213,6 +1318,7 @@ export type ListTransfersResponse = {
1213
1318
  dateBroadcasted?: string | undefined;
1214
1319
  dateConfirmed?: string | undefined;
1215
1320
  approvalId?: string | undefined;
1321
+ externalId?: string | undefined;
1216
1322
  }[];
1217
1323
  nextPageToken?: string | undefined;
1218
1324
  };
@@ -1228,7 +1334,7 @@ export type ListWalletsQuery = {
1228
1334
  export type ListWalletsResponse = {
1229
1335
  items: {
1230
1336
  id: string;
1231
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
1337
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
1232
1338
  address?: string | undefined;
1233
1339
  signingKey: {
1234
1340
  scheme: "ECDSA" | "EdDSA";
@@ -1262,42 +1368,50 @@ export type TagWalletRequest = TagWalletParams & {
1262
1368
  };
1263
1369
  export type TransferAssetBody = {
1264
1370
  kind: "Native";
1265
- to: string | string | string | string | string | string | string | string | string | string | string | string | string | string;
1371
+ to: string | string | string | string | string | string | string | string | string | string | string | string | string | string | string;
1266
1372
  amount: string;
1267
1373
  memo?: string | undefined;
1268
1374
  priority?: ("Slow" | "Standard" | "Fast") | undefined;
1375
+ createDestinationAccount?: boolean | undefined;
1376
+ externalId?: string | undefined;
1269
1377
  } | {
1270
1378
  kind: "Erc20";
1271
1379
  contract: string;
1272
1380
  to: string;
1273
1381
  amount: string;
1274
1382
  priority?: ("Slow" | "Standard" | "Fast") | undefined;
1383
+ externalId?: string | undefined;
1275
1384
  } | {
1276
1385
  kind: "Erc721";
1277
1386
  contract: string;
1278
1387
  to: string;
1279
1388
  tokenId: string;
1280
1389
  priority?: ("Slow" | "Standard" | "Fast") | undefined;
1390
+ externalId?: string | undefined;
1281
1391
  } | {
1282
1392
  kind: "Trc10";
1283
1393
  tokenId: string;
1284
1394
  to: string;
1285
1395
  amount: string;
1396
+ externalId?: string | undefined;
1286
1397
  } | {
1287
1398
  kind: "Trc20";
1288
1399
  contract: string;
1289
1400
  to: string;
1290
1401
  amount: string;
1402
+ externalId?: string | undefined;
1291
1403
  } | {
1292
1404
  kind: "Trc721";
1293
1405
  contract: string;
1294
1406
  to: string;
1295
1407
  tokenId: string;
1408
+ externalId?: string | undefined;
1296
1409
  } | {
1297
1410
  kind: "Asa";
1298
1411
  assetId: string;
1299
1412
  to: string;
1300
1413
  amount: string;
1414
+ externalId?: string | undefined;
1301
1415
  } | {
1302
1416
  kind: "Sep41";
1303
1417
  issuer: string;
@@ -1305,18 +1419,21 @@ export type TransferAssetBody = {
1305
1419
  to: string;
1306
1420
  amount: string;
1307
1421
  memo?: string | undefined;
1422
+ externalId?: string | undefined;
1308
1423
  } | {
1309
1424
  kind: "Spl" | "Spl2022";
1310
1425
  to: string;
1311
1426
  amount: string;
1312
1427
  mint: string;
1313
1428
  createDestinationAccount?: boolean | undefined;
1429
+ externalId?: string | undefined;
1314
1430
  } | {
1315
1431
  kind: "Tep74";
1316
1432
  to: string;
1317
1433
  master: string;
1318
1434
  amount: string;
1319
1435
  memo?: string | undefined;
1436
+ externalId?: string | undefined;
1320
1437
  };
1321
1438
  export type TransferAssetParams = {
1322
1439
  walletId: string;
@@ -1324,7 +1441,7 @@ export type TransferAssetParams = {
1324
1441
  export type TransferAssetResponse = {
1325
1442
  id: string;
1326
1443
  walletId: string;
1327
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
1444
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
1328
1445
  requester: {
1329
1446
  userId: string;
1330
1447
  tokenId?: string | undefined;
@@ -1332,42 +1449,50 @@ export type TransferAssetResponse = {
1332
1449
  };
1333
1450
  requestBody: {
1334
1451
  kind: "Native";
1335
- to: string | string | string | string | string | string | string | string | string | string | string | string | string | string;
1452
+ to: string | string | string | string | string | string | string | string | string | string | string | string | string | string | string;
1336
1453
  amount: string;
1337
1454
  memo?: string | undefined;
1338
1455
  priority?: ("Slow" | "Standard" | "Fast") | undefined;
1456
+ createDestinationAccount?: boolean | undefined;
1457
+ externalId?: string | undefined;
1339
1458
  } | {
1340
1459
  kind: "Erc20";
1341
1460
  contract: string;
1342
1461
  to: string;
1343
1462
  amount: string;
1344
1463
  priority?: ("Slow" | "Standard" | "Fast") | undefined;
1464
+ externalId?: string | undefined;
1345
1465
  } | {
1346
1466
  kind: "Erc721";
1347
1467
  contract: string;
1348
1468
  to: string;
1349
1469
  tokenId: string;
1350
1470
  priority?: ("Slow" | "Standard" | "Fast") | undefined;
1471
+ externalId?: string | undefined;
1351
1472
  } | {
1352
1473
  kind: "Trc10";
1353
1474
  tokenId: string;
1354
1475
  to: string;
1355
1476
  amount: string;
1477
+ externalId?: string | undefined;
1356
1478
  } | {
1357
1479
  kind: "Trc20";
1358
1480
  contract: string;
1359
1481
  to: string;
1360
1482
  amount: string;
1483
+ externalId?: string | undefined;
1361
1484
  } | {
1362
1485
  kind: "Trc721";
1363
1486
  contract: string;
1364
1487
  to: string;
1365
1488
  tokenId: string;
1489
+ externalId?: string | undefined;
1366
1490
  } | {
1367
1491
  kind: "Asa";
1368
1492
  assetId: string;
1369
1493
  to: string;
1370
1494
  amount: string;
1495
+ externalId?: string | undefined;
1371
1496
  } | {
1372
1497
  kind: "Sep41";
1373
1498
  issuer: string;
@@ -1375,18 +1500,21 @@ export type TransferAssetResponse = {
1375
1500
  to: string;
1376
1501
  amount: string;
1377
1502
  memo?: string | undefined;
1503
+ externalId?: string | undefined;
1378
1504
  } | {
1379
1505
  kind: "Spl" | "Spl2022";
1380
1506
  to: string;
1381
1507
  amount: string;
1382
1508
  mint: string;
1383
1509
  createDestinationAccount?: boolean | undefined;
1510
+ externalId?: string | undefined;
1384
1511
  } | {
1385
1512
  kind: "Tep74";
1386
1513
  to: string;
1387
1514
  master: string;
1388
1515
  amount: string;
1389
1516
  memo?: string | undefined;
1517
+ externalId?: string | undefined;
1390
1518
  };
1391
1519
  metadata: {
1392
1520
  asset: {
@@ -1407,6 +1535,7 @@ export type TransferAssetResponse = {
1407
1535
  dateBroadcasted?: string | undefined;
1408
1536
  dateConfirmed?: string | undefined;
1409
1537
  approvalId?: string | undefined;
1538
+ externalId?: string | undefined;
1410
1539
  };
1411
1540
  export type TransferAssetRequest = TransferAssetParams & {
1412
1541
  body: TransferAssetBody;
@@ -1430,7 +1559,7 @@ export type UpdateWalletParams = {
1430
1559
  };
1431
1560
  export type UpdateWalletResponse = {
1432
1561
  id: string;
1433
- network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
1562
+ network: "Algorand" | "AlgorandTestnet" | "ArbitrumOne" | "ArbitrumGoerli" | "ArbitrumSepolia" | "AvalancheC" | "AvalancheCFuji" | "Base" | "BaseGoerli" | "BaseSepolia" | "Bitcoin" | "BitcoinTestnet3" | "Bsc" | "BscTestnet" | "Cardano" | "CardanoPreprod" | "Celo" | "CeloAlfajores" | "Ethereum" | "EthereumGoerli" | "EthereumSepolia" | "EthereumHolesky" | "FantomOpera" | "FantomTestnet" | "InternetComputer" | "Kaspa" | "KaspaTestnet11" | "Kusama" | "Litecoin" | "LitecoinTestnet" | "Optimism" | "OptimismGoerli" | "OptimismSepolia" | "Origyn" | "Polkadot" | "Polygon" | "PolygonAmoy" | "PolygonMumbai" | "Race" | "RaceSepolia" | "SeiAtlantic2" | "SeiPacific1" | "Solana" | "SolanaDevnet" | "Stellar" | "StellarTestnet" | "Tezos" | "TezosGhostnet" | "Ton" | "TonTestnet" | "Tron" | "TronNile" | "Westend" | "XrpLedger" | "XrpLedgerTestnet" | "KeyECDSA" | "KeyECDSAStark" | "KeyEdDSA";
1434
1563
  address?: string | undefined;
1435
1564
  signingKey: {
1436
1565
  scheme: "ECDSA" | "EdDSA";