@crossmint/wallets-sdk 0.9.2 → 0.9.4
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.
- package/dist/api/client.cjs +1 -1
- package/dist/api/client.js +1 -1
- package/dist/api/gen/index.cjs +1 -1
- package/dist/api/gen/index.d.cts +2 -2
- package/dist/api/gen/index.d.ts +2 -2
- package/dist/api/gen/index.js +1 -1
- package/dist/api/gen/sdk.gen.cjs +1 -1
- package/dist/api/gen/sdk.gen.d.cts +74 -56
- package/dist/api/gen/sdk.gen.d.ts +74 -56
- package/dist/api/gen/sdk.gen.js +1 -1
- package/dist/api/gen/types.gen.d.cts +1029 -133
- package/dist/api/gen/types.gen.d.ts +1029 -133
- package/dist/api/index.cjs +1 -1
- package/dist/api/index.js +1 -1
- package/dist/{chunk-EZPXDJTH.js → chunk-4AVSHGKT.js} +1 -1
- package/dist/{chunk-NJE26XVN.cjs → chunk-5JSU3LZH.cjs} +1 -1
- package/dist/chunk-6BHU3GBS.cjs +1 -0
- package/dist/chunk-BHAZGEWK.js +1 -0
- package/dist/{chunk-LWPBINEY.cjs → chunk-C6UVNXU5.cjs} +1 -1
- package/dist/{chunk-UL4VCCX4.js → chunk-CQ4XLGLX.js} +1 -1
- package/dist/chunk-DEV3BSLE.js +1 -0
- package/dist/{chunk-LNNRZ57O.cjs → chunk-DHXTAZWS.cjs} +1 -1
- package/dist/{chunk-YXPJJETA.cjs → chunk-GAYU7KUH.cjs} +1 -1
- package/dist/{chunk-BOFDVKVO.js → chunk-GGDVM72A.js} +1 -1
- package/dist/chunk-HTEW2JRC.cjs +1 -0
- package/dist/{chunk-2JSWBJAN.cjs → chunk-KQ4EMVOP.cjs} +1 -1
- package/dist/chunk-N7YUUBKV.js +1 -0
- package/dist/chunk-NBXRBYNJ.js +1 -0
- package/dist/chunk-NELBLSAV.cjs +1 -0
- package/dist/{chunk-3QIRLHGF.js → chunk-Q2EXQLIK.js} +1 -1
- package/dist/chunk-Q3WOEBKN.js +1 -0
- package/dist/{chunk-4DITXTUS.cjs → chunk-RIBMRBAF.cjs} +1 -1
- package/dist/{chunk-CZNV4IU5.js → chunk-RVVJFXV3.js} +1 -1
- package/dist/{chunk-4NCVYJ7Z.cjs → chunk-W44GS6MY.cjs} +1 -1
- package/dist/{chunk-TMOPWP3M.cjs → chunk-WFNK46AR.cjs} +1 -1
- package/dist/chunk-WGDN5N3M.cjs +1 -0
- package/dist/{chunk-XHXGXDGQ.js → chunk-WTH3C76N.js} +1 -1
- package/dist/{chunk-2VTZGW2W.js → chunk-XII5BD46.js} +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/sdk.cjs +1 -1
- package/dist/sdk.js +1 -1
- package/dist/signers/email/email-signer-api-client.cjs +1 -1
- package/dist/signers/email/email-signer-api-client.js +1 -1
- package/dist/signers/email/email.cjs +1 -1
- package/dist/signers/email/email.js +1 -1
- package/dist/signers/email/index.cjs +1 -1
- package/dist/signers/email/index.js +1 -1
- package/dist/signers/index.cjs +1 -1
- package/dist/signers/index.js +1 -1
- package/dist/utils/constants.cjs +1 -1
- package/dist/utils/constants.js +1 -1
- package/dist/utils/signer-validation.cjs +1 -0
- package/dist/utils/signer-validation.d.cts +3 -0
- package/dist/utils/signer-validation.d.ts +3 -0
- package/dist/utils/signer-validation.js +1 -0
- package/dist/wallets/evm.cjs +1 -1
- package/dist/wallets/evm.js +1 -1
- package/dist/wallets/solana.cjs +1 -1
- package/dist/wallets/solana.js +1 -1
- package/dist/wallets/wallet-factory.cjs +1 -1
- package/dist/wallets/wallet-factory.d.cts +1 -0
- package/dist/wallets/wallet-factory.d.ts +1 -0
- package/dist/wallets/wallet-factory.js +1 -1
- package/dist/wallets/wallet.cjs +1 -1
- package/dist/wallets/wallet.js +1 -1
- package/package.json +4 -4
- package/dist/chunk-AOVOWBIT.js +0 -1
- package/dist/chunk-B7STGDR2.js +0 -1
- package/dist/chunk-GEPC4YIP.js +0 -1
- package/dist/chunk-P5MJTOIJ.js +0 -1
- package/dist/chunk-SWM6JY2U.cjs +0 -1
- package/dist/chunk-VJXBCCGT.cjs +0 -1
- package/dist/chunk-WDPPBPYX.cjs +0 -1
|
@@ -12,6 +12,7 @@ type CreateSignatureRequestDto = {
|
|
|
12
12
|
*/
|
|
13
13
|
message: string;
|
|
14
14
|
/**
|
|
15
|
+
* Signer Locator
|
|
15
16
|
* The locator for the signer who will submit this signature. Defaults to the wallet's admin signer.
|
|
16
17
|
*/
|
|
17
18
|
signer?: string;
|
|
@@ -55,13 +56,16 @@ type CreateSignatureRequestDto = {
|
|
|
55
56
|
}>;
|
|
56
57
|
};
|
|
57
58
|
primaryType: string;
|
|
58
|
-
message: {
|
|
59
|
+
message: {
|
|
60
|
+
[key: string]: unknown;
|
|
61
|
+
};
|
|
59
62
|
};
|
|
60
63
|
/**
|
|
61
64
|
* The chain on which the signature will be submitted
|
|
62
65
|
*/
|
|
63
66
|
chain: 'arbitrum-sepolia' | 'avalanche-fuji' | 'curtis' | 'barret-testnet' | 'base-goerli' | 'base-sepolia' | 'bsc-testnet' | 'chiliz-spicy-testnet' | 'coti-testnet' | 'ethereum-goerli' | 'ethereum-sepolia' | 'hedera-testnet' | 'hypersonic-testnet' | 'lightlink-pegasus' | 'mantle-sepolia' | 'optimism-goerli' | 'optimism-sepolia' | 'polygon-amoy' | 'polygon-mumbai' | 'crossmint-private-testnet-ethereum' | 'crossmint-private-testnet-polygon' | 'rari-testnet' | 'scroll-sepolia' | 'sei-atlantic-2-testnet' | 'shape-sepolia' | 'skale-nebula-testnet' | 'soneium-minato-testnet' | 'space-testnet' | 'story-testnet' | 'verify-testnet' | 'viction-testnet' | 'xai-sepolia-testnet' | 'zkatana' | 'zkyoto' | 'zora-goerli' | 'zora-sepolia' | 'mode-sepolia' | 'u2u-nebulas' | 'zenchain-testnet' | 'abstract-testnet' | 'world-chain-sepolia' | 'ethereum' | 'polygon' | 'bsc' | 'optimism' | 'arbitrum' | 'base' | 'zora' | 'arbitrumnova' | 'astar-zkevm' | 'apechain' | 'apex' | 'boss' | 'hedera' | 'coti' | 'lightlink' | 'mantle' | 'skale-nebula' | 'sei-pacific-1' | 'chiliz' | 'avalanche' | 'xai' | 'shape' | 'rari' | 'scroll' | 'viction' | 'mode' | 'space' | 'soneium' | 'story' | 'u2u-solaris' | 'abstract' | 'world-chain';
|
|
64
67
|
/**
|
|
68
|
+
* Signer Locator
|
|
65
69
|
* The locator for the signer who will approve this signature
|
|
66
70
|
*/
|
|
67
71
|
signer?: string;
|
|
@@ -177,6 +181,7 @@ type CreateSignerInputDto = {
|
|
|
177
181
|
}>;
|
|
178
182
|
} | {
|
|
179
183
|
/**
|
|
184
|
+
* Signer Locator
|
|
180
185
|
* A signer locator that can be either a of format '<signerAddress>' for keypair type signers or '<signerType>:<signerIdentifier>'
|
|
181
186
|
*/
|
|
182
187
|
signer: string;
|
|
@@ -186,6 +191,7 @@ type CreateSignerInputDto = {
|
|
|
186
191
|
*/
|
|
187
192
|
type CreateTransactionDto = {
|
|
188
193
|
/**
|
|
194
|
+
* Solana smart wallet
|
|
189
195
|
* Parameters for a transaction from a Solana Smart Wallet
|
|
190
196
|
*/
|
|
191
197
|
params: {
|
|
@@ -198,12 +204,14 @@ type CreateTransactionDto = {
|
|
|
198
204
|
*/
|
|
199
205
|
requiredSigners?: Array<string>;
|
|
200
206
|
/**
|
|
207
|
+
* Signer Locator
|
|
201
208
|
* The locator for the signer who will submit this transaction. Defaults to the admin signer.
|
|
202
209
|
*/
|
|
203
210
|
signer?: string;
|
|
204
211
|
};
|
|
205
212
|
} | {
|
|
206
213
|
/**
|
|
214
|
+
* EVM smart wallet
|
|
207
215
|
* Parameters for a transaction from an EVM Smart Wallet
|
|
208
216
|
*/
|
|
209
217
|
params: {
|
|
@@ -287,12 +295,14 @@ type CreateTransactionDto = {
|
|
|
287
295
|
*/
|
|
288
296
|
chain: 'base' | 'polygon' | 'optimism' | 'arbitrum' | 'mode' | 'story' | 'bsc' | 'shape' | 'ethereum-sepolia' | 'base-sepolia' | 'polygon-amoy' | 'optimism-sepolia' | 'arbitrum-sepolia' | 'mode-sepolia' | 'story-testnet';
|
|
289
297
|
/**
|
|
298
|
+
* Signer Locator
|
|
290
299
|
* The locator for the signer who will submit this transaction
|
|
291
300
|
*/
|
|
292
301
|
signer?: string;
|
|
293
302
|
};
|
|
294
303
|
} | {
|
|
295
304
|
/**
|
|
305
|
+
* Solana MPC wallet
|
|
296
306
|
* Parameters for a transaction from a Solana MPC Wallet
|
|
297
307
|
*/
|
|
298
308
|
params: {
|
|
@@ -307,6 +317,7 @@ type CreateTransactionDto = {
|
|
|
307
317
|
};
|
|
308
318
|
} | {
|
|
309
319
|
/**
|
|
320
|
+
* EVM MPC wallet
|
|
310
321
|
* Parameters for a transaction from an EVM MPC Wallet
|
|
311
322
|
*/
|
|
312
323
|
params: {
|
|
@@ -531,6 +542,7 @@ type DelegatedSignerDto = {
|
|
|
531
542
|
*/
|
|
532
543
|
type: 'evm-keypair' | 'evm-fireblocks-custodial' | 'evm-passkey';
|
|
533
544
|
/**
|
|
545
|
+
* Signer Locator
|
|
534
546
|
* The locator of the signer
|
|
535
547
|
*/
|
|
536
548
|
locator: string;
|
|
@@ -645,6 +657,7 @@ type DelegatedSignerDto = {
|
|
|
645
657
|
*/
|
|
646
658
|
submittedAt: number;
|
|
647
659
|
/**
|
|
660
|
+
* Signer Locator
|
|
648
661
|
* The locator of the signer who submitted this signature
|
|
649
662
|
*/
|
|
650
663
|
signer: string;
|
|
@@ -674,6 +687,7 @@ type DelegatedSignerDto = {
|
|
|
674
687
|
*/
|
|
675
688
|
type: 'solana-keypair' | 'solana-fireblocks-custodial';
|
|
676
689
|
/**
|
|
690
|
+
* Signer Locator
|
|
677
691
|
* The locator of the signer
|
|
678
692
|
*/
|
|
679
693
|
locator: string;
|
|
@@ -727,6 +741,7 @@ type DelegatedSignerDto = {
|
|
|
727
741
|
*/
|
|
728
742
|
submittedAt: number;
|
|
729
743
|
/**
|
|
744
|
+
* Signer Locator
|
|
730
745
|
* The locator of the signer who submitted this signature
|
|
731
746
|
*/
|
|
732
747
|
signer: string;
|
|
@@ -819,64 +834,6 @@ type FundWalletAmountDto = {
|
|
|
819
834
|
*/
|
|
820
835
|
chain?: 'arbitrum-sepolia' | 'avalanche-fuji' | 'base-sepolia' | 'barret-testnet' | 'ethereum-sepolia' | 'optimism-sepolia' | 'polygon-amoy' | 'sei-atlantic-2-testnet' | 'skale-nebula-testnet' | 'soneium-minato-testnet' | 'viction-testnet' | 'solana';
|
|
821
836
|
};
|
|
822
|
-
/**
|
|
823
|
-
* Array of wallet balances per token
|
|
824
|
-
*/
|
|
825
|
-
type WalletBalanceUnstableResponseDto = Array<{
|
|
826
|
-
token: string;
|
|
827
|
-
/**
|
|
828
|
-
* The number of decimals of the token
|
|
829
|
-
*/
|
|
830
|
-
decimals: number;
|
|
831
|
-
/**
|
|
832
|
-
* The amount of the token after placing the decimal point
|
|
833
|
-
*/
|
|
834
|
-
amount: string;
|
|
835
|
-
/**
|
|
836
|
-
* The raw amount of the token
|
|
837
|
-
*/
|
|
838
|
-
rawAmount: string;
|
|
839
|
-
/**
|
|
840
|
-
* Balance information per chain
|
|
841
|
-
*/
|
|
842
|
-
forChain: {
|
|
843
|
-
[key: string]: {
|
|
844
|
-
/**
|
|
845
|
-
* Either a token string (e.g., 'eth', 'sol') or a token locator string (e.g., 'ethereum:0x123', 'solana:sol')
|
|
846
|
-
*/
|
|
847
|
-
locator: string;
|
|
848
|
-
/**
|
|
849
|
-
* The amount of the token after placing the decimal point
|
|
850
|
-
*/
|
|
851
|
-
amount: string;
|
|
852
|
-
/**
|
|
853
|
-
* The raw amount of the token
|
|
854
|
-
*/
|
|
855
|
-
rawAmount: string;
|
|
856
|
-
/**
|
|
857
|
-
* The contract address of the token on the EVM chain. Not present for native tokens.
|
|
858
|
-
*/
|
|
859
|
-
contractAddress?: string;
|
|
860
|
-
} | {
|
|
861
|
-
/**
|
|
862
|
-
* Either a token string (e.g., 'eth', 'sol') or a token locator string (e.g., 'ethereum:0x123', 'solana:sol')
|
|
863
|
-
*/
|
|
864
|
-
locator: string;
|
|
865
|
-
/**
|
|
866
|
-
* The amount of the token after placing the decimal point
|
|
867
|
-
*/
|
|
868
|
-
amount: string;
|
|
869
|
-
/**
|
|
870
|
-
* The raw amount of the token
|
|
871
|
-
*/
|
|
872
|
-
rawAmount: string;
|
|
873
|
-
/**
|
|
874
|
-
* The mint hash of the token on Solana. Not present for native SOL.
|
|
875
|
-
*/
|
|
876
|
-
mintHash?: string;
|
|
877
|
-
};
|
|
878
|
-
};
|
|
879
|
-
}>;
|
|
880
837
|
type SendTokenDto = {
|
|
881
838
|
/**
|
|
882
839
|
* An address locator that supports different types of recipients. It can be of the format:
|
|
@@ -891,11 +848,12 @@ type SendTokenDto = {
|
|
|
891
848
|
*/
|
|
892
849
|
recipient: string;
|
|
893
850
|
/**
|
|
851
|
+
* Signer Locator
|
|
894
852
|
* Optional signer locator. Defaults to admin signer
|
|
895
853
|
*/
|
|
896
854
|
signer?: string;
|
|
897
855
|
/**
|
|
898
|
-
* Amount of tokens to transfer
|
|
856
|
+
* Amount of tokens to transfer (in decimal value)
|
|
899
857
|
*/
|
|
900
858
|
amount?: string;
|
|
901
859
|
};
|
|
@@ -958,7 +916,7 @@ type SubmitApprovalDto = {
|
|
|
958
916
|
*/
|
|
959
917
|
userVerificationRequired: boolean;
|
|
960
918
|
};
|
|
961
|
-
} | {
|
|
919
|
+
}> | Array<{
|
|
962
920
|
/**
|
|
963
921
|
* The locator for the Solana signer
|
|
964
922
|
*/
|
|
@@ -989,6 +947,65 @@ type WalletBalanceResponseDto = Array<{
|
|
|
989
947
|
};
|
|
990
948
|
}>;
|
|
991
949
|
/**
|
|
950
|
+
* Array of wallet balances per token
|
|
951
|
+
*/
|
|
952
|
+
type WalletBalanceUnstableResponseDto = Array<{
|
|
953
|
+
token: string;
|
|
954
|
+
/**
|
|
955
|
+
* The number of decimals of the token
|
|
956
|
+
*/
|
|
957
|
+
decimals: number;
|
|
958
|
+
/**
|
|
959
|
+
* The amount of the token after placing the decimal point
|
|
960
|
+
*/
|
|
961
|
+
amount: string;
|
|
962
|
+
/**
|
|
963
|
+
* The raw amount of the token
|
|
964
|
+
*/
|
|
965
|
+
rawAmount: string;
|
|
966
|
+
/**
|
|
967
|
+
* Balance information per chain
|
|
968
|
+
*/
|
|
969
|
+
forChain: {
|
|
970
|
+
[key: string]: {
|
|
971
|
+
/**
|
|
972
|
+
* Either a token string (e.g., 'eth', 'sol') or a token locator string (e.g., 'ethereum:0x123', 'solana:sol')
|
|
973
|
+
*/
|
|
974
|
+
locator: string;
|
|
975
|
+
/**
|
|
976
|
+
* The amount of the token after placing the decimal point
|
|
977
|
+
*/
|
|
978
|
+
amount: string;
|
|
979
|
+
/**
|
|
980
|
+
* The raw amount of the token
|
|
981
|
+
*/
|
|
982
|
+
rawAmount: string;
|
|
983
|
+
/**
|
|
984
|
+
* The contract address of the token on the EVM chain. Not present for native tokens.
|
|
985
|
+
*/
|
|
986
|
+
contractAddress?: string;
|
|
987
|
+
} | {
|
|
988
|
+
/**
|
|
989
|
+
* Either a token string (e.g., 'eth', 'sol') or a token locator string (e.g., 'ethereum:0x123', 'solana:sol')
|
|
990
|
+
*/
|
|
991
|
+
locator: string;
|
|
992
|
+
/**
|
|
993
|
+
* The amount of the token after placing the decimal point
|
|
994
|
+
*/
|
|
995
|
+
amount: string;
|
|
996
|
+
/**
|
|
997
|
+
* The raw amount of the token
|
|
998
|
+
*/
|
|
999
|
+
rawAmount: string;
|
|
1000
|
+
/**
|
|
1001
|
+
* The mint hash of the token on Solana. Not present for native SOL.
|
|
1002
|
+
*/
|
|
1003
|
+
mintHash?: string;
|
|
1004
|
+
};
|
|
1005
|
+
};
|
|
1006
|
+
}>;
|
|
1007
|
+
/**
|
|
1008
|
+
* Wallet Activity Response
|
|
992
1009
|
* List of activities associated with a wallet including transactions and other events
|
|
993
1010
|
*/
|
|
994
1011
|
type WalletsV1Alpha2ActivityResponseDto = {
|
|
@@ -996,7 +1013,11 @@ type WalletsV1Alpha2ActivityResponseDto = {
|
|
|
996
1013
|
/**
|
|
997
1014
|
* The symbol of the token involved in the activity
|
|
998
1015
|
*/
|
|
999
|
-
token_symbol
|
|
1016
|
+
token_symbol?: string;
|
|
1017
|
+
/**
|
|
1018
|
+
* The hash of the token
|
|
1019
|
+
*/
|
|
1020
|
+
mint_hash?: string;
|
|
1000
1021
|
/**
|
|
1001
1022
|
* The hash of the transaction
|
|
1002
1023
|
*/
|
|
@@ -1049,6 +1070,7 @@ type WalletsV1Alpha2MultipleSignatureResponseDto = {
|
|
|
1049
1070
|
*/
|
|
1050
1071
|
message: string;
|
|
1051
1072
|
/**
|
|
1073
|
+
* Signer Locator
|
|
1052
1074
|
* The locator for the signer who will submit this signature. Defaults to the wallet's admin signer.
|
|
1053
1075
|
*/
|
|
1054
1076
|
signer?: string;
|
|
@@ -1080,13 +1102,16 @@ type WalletsV1Alpha2MultipleSignatureResponseDto = {
|
|
|
1080
1102
|
}>;
|
|
1081
1103
|
};
|
|
1082
1104
|
primaryType: string;
|
|
1083
|
-
message: {
|
|
1105
|
+
message: {
|
|
1106
|
+
[key: string]: unknown;
|
|
1107
|
+
};
|
|
1084
1108
|
};
|
|
1085
1109
|
/**
|
|
1086
1110
|
* The chain on which the signature will be submitted
|
|
1087
1111
|
*/
|
|
1088
1112
|
chain: 'arbitrum-sepolia' | 'avalanche-fuji' | 'curtis' | 'barret-testnet' | 'base-goerli' | 'base-sepolia' | 'bsc-testnet' | 'chiliz-spicy-testnet' | 'coti-testnet' | 'ethereum-goerli' | 'ethereum-sepolia' | 'hedera-testnet' | 'hypersonic-testnet' | 'lightlink-pegasus' | 'mantle-sepolia' | 'optimism-goerli' | 'optimism-sepolia' | 'polygon-amoy' | 'polygon-mumbai' | 'crossmint-private-testnet-ethereum' | 'crossmint-private-testnet-polygon' | 'rari-testnet' | 'scroll-sepolia' | 'sei-atlantic-2-testnet' | 'shape-sepolia' | 'skale-nebula-testnet' | 'soneium-minato-testnet' | 'space-testnet' | 'story-testnet' | 'verify-testnet' | 'viction-testnet' | 'xai-sepolia-testnet' | 'zkatana' | 'zkyoto' | 'zora-goerli' | 'zora-sepolia' | 'mode-sepolia' | 'u2u-nebulas' | 'zenchain-testnet' | 'abstract-testnet' | 'world-chain-sepolia' | 'ethereum' | 'polygon' | 'bsc' | 'optimism' | 'arbitrum' | 'base' | 'zora' | 'arbitrumnova' | 'astar-zkevm' | 'apechain' | 'apex' | 'boss' | 'hedera' | 'coti' | 'lightlink' | 'mantle' | 'skale-nebula' | 'sei-pacific-1' | 'chiliz' | 'avalanche' | 'xai' | 'shape' | 'rari' | 'scroll' | 'viction' | 'mode' | 'space' | 'soneium' | 'story' | 'u2u-solaris' | 'abstract' | 'world-chain';
|
|
1089
1113
|
/**
|
|
1114
|
+
* Signer Locator
|
|
1090
1115
|
* The locator for the signer who will approve this signature
|
|
1091
1116
|
*/
|
|
1092
1117
|
signer?: string;
|
|
@@ -1125,6 +1150,7 @@ type WalletsV1Alpha2MultipleSignatureResponseDto = {
|
|
|
1125
1150
|
*/
|
|
1126
1151
|
submittedAt: number;
|
|
1127
1152
|
/**
|
|
1153
|
+
* Signer Locator
|
|
1128
1154
|
* The locator of the signer who submitted this signature
|
|
1129
1155
|
*/
|
|
1130
1156
|
signer: string;
|
|
@@ -1177,64 +1203,775 @@ type WalletsV1Alpha2SignatureResponseDto = {
|
|
|
1177
1203
|
*/
|
|
1178
1204
|
type: 'evm-message' | 'solana-message' | 'evm-typed-data' | 'aptos-message' | 'cardano-message' | 'sui-message';
|
|
1179
1205
|
/**
|
|
1180
|
-
* Current status of the signature
|
|
1206
|
+
* Current status of the signature
|
|
1207
|
+
*/
|
|
1208
|
+
status: 'awaiting-approval' | 'pending' | 'failed' | 'success';
|
|
1209
|
+
/**
|
|
1210
|
+
* Type-specific signature parameters
|
|
1211
|
+
*/
|
|
1212
|
+
params: {
|
|
1213
|
+
/**
|
|
1214
|
+
* The message in plain text to sign
|
|
1215
|
+
*/
|
|
1216
|
+
message: string;
|
|
1217
|
+
/**
|
|
1218
|
+
* Signer Locator
|
|
1219
|
+
* The locator for the signer who will submit this signature. Defaults to the wallet's admin signer.
|
|
1220
|
+
*/
|
|
1221
|
+
signer?: string;
|
|
1222
|
+
/**
|
|
1223
|
+
* The chain on which the signature will be submitted
|
|
1224
|
+
*/
|
|
1225
|
+
chain: 'arbitrum-sepolia' | 'avalanche-fuji' | 'curtis' | 'barret-testnet' | 'base-goerli' | 'base-sepolia' | 'bsc-testnet' | 'chiliz-spicy-testnet' | 'coti-testnet' | 'ethereum-goerli' | 'ethereum-sepolia' | 'hedera-testnet' | 'hypersonic-testnet' | 'lightlink-pegasus' | 'mantle-sepolia' | 'optimism-goerli' | 'optimism-sepolia' | 'polygon-amoy' | 'polygon-mumbai' | 'crossmint-private-testnet-ethereum' | 'crossmint-private-testnet-polygon' | 'rari-testnet' | 'scroll-sepolia' | 'sei-atlantic-2-testnet' | 'shape-sepolia' | 'skale-nebula-testnet' | 'soneium-minato-testnet' | 'space-testnet' | 'story-testnet' | 'verify-testnet' | 'viction-testnet' | 'xai-sepolia-testnet' | 'zkatana' | 'zkyoto' | 'zora-goerli' | 'zora-sepolia' | 'mode-sepolia' | 'u2u-nebulas' | 'zenchain-testnet' | 'abstract-testnet' | 'world-chain-sepolia' | 'ethereum' | 'polygon' | 'bsc' | 'optimism' | 'arbitrum' | 'base' | 'zora' | 'arbitrumnova' | 'astar-zkevm' | 'apechain' | 'apex' | 'boss' | 'hedera' | 'coti' | 'lightlink' | 'mantle' | 'skale-nebula' | 'sei-pacific-1' | 'chiliz' | 'avalanche' | 'xai' | 'shape' | 'rari' | 'scroll' | 'viction' | 'mode' | 'space' | 'soneium' | 'story' | 'u2u-solaris' | 'abstract' | 'world-chain';
|
|
1226
|
+
} | {
|
|
1227
|
+
/**
|
|
1228
|
+
* The message in plain text to sign
|
|
1229
|
+
*/
|
|
1230
|
+
message: string;
|
|
1231
|
+
} | {
|
|
1232
|
+
typedData: {
|
|
1233
|
+
domain: {
|
|
1234
|
+
name: string;
|
|
1235
|
+
version: string;
|
|
1236
|
+
chainId: number;
|
|
1237
|
+
/**
|
|
1238
|
+
* An EVM address string
|
|
1239
|
+
*/
|
|
1240
|
+
verifyingContract: string;
|
|
1241
|
+
salt?: string;
|
|
1242
|
+
};
|
|
1243
|
+
types: {
|
|
1244
|
+
[key: string]: Array<{
|
|
1245
|
+
name: string;
|
|
1246
|
+
type: string;
|
|
1247
|
+
}>;
|
|
1248
|
+
};
|
|
1249
|
+
primaryType: string;
|
|
1250
|
+
message: {
|
|
1251
|
+
[key: string]: unknown;
|
|
1252
|
+
};
|
|
1253
|
+
};
|
|
1254
|
+
/**
|
|
1255
|
+
* The chain on which the signature will be submitted
|
|
1256
|
+
*/
|
|
1257
|
+
chain: 'arbitrum-sepolia' | 'avalanche-fuji' | 'curtis' | 'barret-testnet' | 'base-goerli' | 'base-sepolia' | 'bsc-testnet' | 'chiliz-spicy-testnet' | 'coti-testnet' | 'ethereum-goerli' | 'ethereum-sepolia' | 'hedera-testnet' | 'hypersonic-testnet' | 'lightlink-pegasus' | 'mantle-sepolia' | 'optimism-goerli' | 'optimism-sepolia' | 'polygon-amoy' | 'polygon-mumbai' | 'crossmint-private-testnet-ethereum' | 'crossmint-private-testnet-polygon' | 'rari-testnet' | 'scroll-sepolia' | 'sei-atlantic-2-testnet' | 'shape-sepolia' | 'skale-nebula-testnet' | 'soneium-minato-testnet' | 'space-testnet' | 'story-testnet' | 'verify-testnet' | 'viction-testnet' | 'xai-sepolia-testnet' | 'zkatana' | 'zkyoto' | 'zora-goerli' | 'zora-sepolia' | 'mode-sepolia' | 'u2u-nebulas' | 'zenchain-testnet' | 'abstract-testnet' | 'world-chain-sepolia' | 'ethereum' | 'polygon' | 'bsc' | 'optimism' | 'arbitrum' | 'base' | 'zora' | 'arbitrumnova' | 'astar-zkevm' | 'apechain' | 'apex' | 'boss' | 'hedera' | 'coti' | 'lightlink' | 'mantle' | 'skale-nebula' | 'sei-pacific-1' | 'chiliz' | 'avalanche' | 'xai' | 'shape' | 'rari' | 'scroll' | 'viction' | 'mode' | 'space' | 'soneium' | 'story' | 'u2u-solaris' | 'abstract' | 'world-chain';
|
|
1258
|
+
/**
|
|
1259
|
+
* Signer Locator
|
|
1260
|
+
* The locator for the signer who will approve this signature
|
|
1261
|
+
*/
|
|
1262
|
+
signer?: string;
|
|
1263
|
+
/**
|
|
1264
|
+
* Whether the signature corresponds to the smart wallet or to the signer. If true, the signature will be wrapped with ERC6492.
|
|
1265
|
+
*/
|
|
1266
|
+
isSmartWalletSignature?: boolean;
|
|
1267
|
+
};
|
|
1268
|
+
/**
|
|
1269
|
+
* Complete approval data including requirements, pending and submitted signatures
|
|
1270
|
+
*/
|
|
1271
|
+
approvals?: {
|
|
1272
|
+
/**
|
|
1273
|
+
* List of pending signatures
|
|
1274
|
+
*/
|
|
1275
|
+
pending: Array<{
|
|
1276
|
+
/**
|
|
1277
|
+
* The locator of the signer that's pending approval
|
|
1278
|
+
*/
|
|
1279
|
+
signer: string;
|
|
1280
|
+
/**
|
|
1281
|
+
* The message that needs to be signed
|
|
1282
|
+
*/
|
|
1283
|
+
message: string;
|
|
1284
|
+
}>;
|
|
1285
|
+
/**
|
|
1286
|
+
* Record of all submitted signatures
|
|
1287
|
+
*/
|
|
1288
|
+
submitted: Array<{
|
|
1289
|
+
/**
|
|
1290
|
+
* The cryptographic signature
|
|
1291
|
+
*/
|
|
1292
|
+
signature: string;
|
|
1293
|
+
/**
|
|
1294
|
+
* When the signature was submitted
|
|
1295
|
+
*/
|
|
1296
|
+
submittedAt: number;
|
|
1297
|
+
/**
|
|
1298
|
+
* Signer Locator
|
|
1299
|
+
* The locator of the signer who submitted this signature
|
|
1300
|
+
*/
|
|
1301
|
+
signer: string;
|
|
1302
|
+
/**
|
|
1303
|
+
* The message that was signed
|
|
1304
|
+
*/
|
|
1305
|
+
message: string;
|
|
1306
|
+
/**
|
|
1307
|
+
* Additional metadata about the signature submission
|
|
1308
|
+
*/
|
|
1309
|
+
metadata?: {
|
|
1310
|
+
deviceInfo?: string;
|
|
1311
|
+
ipAddress?: string;
|
|
1312
|
+
userAgent?: string;
|
|
1313
|
+
};
|
|
1314
|
+
}>;
|
|
1315
|
+
/**
|
|
1316
|
+
* Number of required approvals for the transaction
|
|
1317
|
+
*/
|
|
1318
|
+
required?: number;
|
|
1319
|
+
};
|
|
1320
|
+
/**
|
|
1321
|
+
* ISO timestamp when the signature was created
|
|
1322
|
+
*/
|
|
1323
|
+
createdAt: number;
|
|
1324
|
+
/**
|
|
1325
|
+
* ISO timestamp when the transaction reached finality
|
|
1326
|
+
*/
|
|
1327
|
+
completedAt?: number;
|
|
1328
|
+
/**
|
|
1329
|
+
* Error message if the signature fails
|
|
1330
|
+
*/
|
|
1331
|
+
error?: unknown;
|
|
1332
|
+
/**
|
|
1333
|
+
* The wallet's output signature of the request
|
|
1334
|
+
*/
|
|
1335
|
+
outputSignature?: string;
|
|
1336
|
+
};
|
|
1337
|
+
/**
|
|
1338
|
+
* Complete transaction response including status, signing requirements, and wallet type specific data
|
|
1339
|
+
*/
|
|
1340
|
+
type WalletsV1Alpha2TransactionResponseDto = {
|
|
1341
|
+
/**
|
|
1342
|
+
* The type of wallet that created this transaction
|
|
1343
|
+
*/
|
|
1344
|
+
walletType: 'evm-smart-wallet';
|
|
1345
|
+
/**
|
|
1346
|
+
* EVM smart wallet transaction parameters
|
|
1347
|
+
*/
|
|
1348
|
+
params: {
|
|
1349
|
+
/**
|
|
1350
|
+
* Transaction data to execute
|
|
1351
|
+
*/
|
|
1352
|
+
calls: Array<{
|
|
1353
|
+
/**
|
|
1354
|
+
* The recipient address for this transaction call
|
|
1355
|
+
*/
|
|
1356
|
+
address: string;
|
|
1357
|
+
/**
|
|
1358
|
+
* The name of the function to call
|
|
1359
|
+
*/
|
|
1360
|
+
functionName: string;
|
|
1361
|
+
/**
|
|
1362
|
+
* The ABI for the function to call
|
|
1363
|
+
*/
|
|
1364
|
+
abi: Array<{
|
|
1365
|
+
type: 'error';
|
|
1366
|
+
inputs: Array<unknown>;
|
|
1367
|
+
name: string;
|
|
1368
|
+
} | {
|
|
1369
|
+
type: 'event';
|
|
1370
|
+
anonymous?: boolean;
|
|
1371
|
+
inputs: Array<unknown & {
|
|
1372
|
+
indexed?: boolean;
|
|
1373
|
+
}>;
|
|
1374
|
+
name: string;
|
|
1375
|
+
} | ({
|
|
1376
|
+
constant?: boolean;
|
|
1377
|
+
gas?: number;
|
|
1378
|
+
payable?: boolean;
|
|
1379
|
+
} & ({
|
|
1380
|
+
type: 'function';
|
|
1381
|
+
inputs: Array<unknown>;
|
|
1382
|
+
name: string;
|
|
1383
|
+
outputs: Array<unknown>;
|
|
1384
|
+
stateMutability: 'pure' | 'view' | 'nonpayable' | 'payable';
|
|
1385
|
+
} | {
|
|
1386
|
+
type: 'constructor';
|
|
1387
|
+
inputs: Array<unknown>;
|
|
1388
|
+
stateMutability: 'payable' | 'nonpayable';
|
|
1389
|
+
} | {
|
|
1390
|
+
type: 'fallback';
|
|
1391
|
+
inputs?: unknown;
|
|
1392
|
+
stateMutability: 'payable' | 'nonpayable';
|
|
1393
|
+
} | {
|
|
1394
|
+
type: 'receive';
|
|
1395
|
+
stateMutability: 'payable';
|
|
1396
|
+
}))>;
|
|
1397
|
+
/**
|
|
1398
|
+
* The arguments to pass to the function
|
|
1399
|
+
*/
|
|
1400
|
+
args: Array<unknown>;
|
|
1401
|
+
/**
|
|
1402
|
+
* The amount of native token to send in wei
|
|
1403
|
+
*/
|
|
1404
|
+
value?: string;
|
|
1405
|
+
} | {
|
|
1406
|
+
/**
|
|
1407
|
+
* The recipient address for this transaction call
|
|
1408
|
+
*/
|
|
1409
|
+
to: string;
|
|
1410
|
+
/**
|
|
1411
|
+
* The amount of native token to send in wei
|
|
1412
|
+
*/
|
|
1413
|
+
value: string;
|
|
1414
|
+
/**
|
|
1415
|
+
* The encoded calldata for this transaction
|
|
1416
|
+
*/
|
|
1417
|
+
data: unknown;
|
|
1418
|
+
} | {
|
|
1419
|
+
/**
|
|
1420
|
+
* Serialized EVM transaction
|
|
1421
|
+
*/
|
|
1422
|
+
transaction: unknown;
|
|
1423
|
+
}>;
|
|
1424
|
+
/**
|
|
1425
|
+
* The chain on which the transaction will be executed
|
|
1426
|
+
*/
|
|
1427
|
+
chain: 'base' | 'polygon' | 'optimism' | 'arbitrum' | 'mode' | 'story' | 'bsc' | 'shape' | 'ethereum-sepolia' | 'base-sepolia' | 'polygon-amoy' | 'optimism-sepolia' | 'arbitrum-sepolia' | 'mode-sepolia' | 'story-testnet';
|
|
1428
|
+
/**
|
|
1429
|
+
* Signer Locator
|
|
1430
|
+
* The locator for the signer who will submit this transaction
|
|
1431
|
+
*/
|
|
1432
|
+
signer?: string;
|
|
1433
|
+
};
|
|
1434
|
+
/**
|
|
1435
|
+
* EVM smart wallet transaction data
|
|
1436
|
+
* EVM smart wallet transaction data including input parameters and chain specific details
|
|
1437
|
+
*/
|
|
1438
|
+
onChain: {
|
|
1439
|
+
userOperation: {
|
|
1440
|
+
sender: string;
|
|
1441
|
+
nonce: string;
|
|
1442
|
+
callData: string;
|
|
1443
|
+
callGasLimit: string;
|
|
1444
|
+
verificationGasLimit: string;
|
|
1445
|
+
preVerificationGas: string;
|
|
1446
|
+
maxFeePerGas: string;
|
|
1447
|
+
maxPriorityFeePerGas: string;
|
|
1448
|
+
paymaster?: string;
|
|
1449
|
+
paymasterVerificationGasLimit?: string;
|
|
1450
|
+
paymasterData?: string;
|
|
1451
|
+
paymasterPostOpGasLimit?: string;
|
|
1452
|
+
signature: string;
|
|
1453
|
+
factory?: string;
|
|
1454
|
+
factoryData?: string;
|
|
1455
|
+
};
|
|
1456
|
+
userOperationHash: string;
|
|
1457
|
+
txId?: string;
|
|
1458
|
+
explorerLink?: string;
|
|
1459
|
+
};
|
|
1460
|
+
/**
|
|
1461
|
+
* Unique identifier for the transaction
|
|
1462
|
+
*/
|
|
1463
|
+
id: string;
|
|
1464
|
+
/**
|
|
1465
|
+
* Current status of the transaction
|
|
1466
|
+
*/
|
|
1467
|
+
status: 'awaiting-approval' | 'pending' | 'failed' | 'success';
|
|
1468
|
+
/**
|
|
1469
|
+
* Complete approval data including requirements, pending and submitted signatures
|
|
1470
|
+
*/
|
|
1471
|
+
approvals?: {
|
|
1472
|
+
/**
|
|
1473
|
+
* List of pending signatures
|
|
1474
|
+
*/
|
|
1475
|
+
pending: Array<{
|
|
1476
|
+
/**
|
|
1477
|
+
* The locator of the signer that's pending approval
|
|
1478
|
+
*/
|
|
1479
|
+
signer: string;
|
|
1480
|
+
/**
|
|
1481
|
+
* The message that needs to be signed
|
|
1482
|
+
*/
|
|
1483
|
+
message: string;
|
|
1484
|
+
}>;
|
|
1485
|
+
/**
|
|
1486
|
+
* Record of all submitted signatures
|
|
1487
|
+
*/
|
|
1488
|
+
submitted: Array<{
|
|
1489
|
+
/**
|
|
1490
|
+
* The cryptographic signature
|
|
1491
|
+
*/
|
|
1492
|
+
signature: string;
|
|
1493
|
+
/**
|
|
1494
|
+
* When the signature was submitted
|
|
1495
|
+
*/
|
|
1496
|
+
submittedAt: number;
|
|
1497
|
+
/**
|
|
1498
|
+
* Signer Locator
|
|
1499
|
+
* The locator of the signer who submitted this signature
|
|
1500
|
+
*/
|
|
1501
|
+
signer: string;
|
|
1502
|
+
/**
|
|
1503
|
+
* The message that was signed
|
|
1504
|
+
*/
|
|
1505
|
+
message: string;
|
|
1506
|
+
/**
|
|
1507
|
+
* Additional metadata about the signature submission
|
|
1508
|
+
*/
|
|
1509
|
+
metadata?: {
|
|
1510
|
+
deviceInfo?: string;
|
|
1511
|
+
ipAddress?: string;
|
|
1512
|
+
userAgent?: string;
|
|
1513
|
+
};
|
|
1514
|
+
}>;
|
|
1515
|
+
/**
|
|
1516
|
+
* Number of required approvals for the transaction
|
|
1517
|
+
*/
|
|
1518
|
+
required?: number;
|
|
1519
|
+
};
|
|
1520
|
+
/**
|
|
1521
|
+
* ISO timestamp when the transaction was created
|
|
1522
|
+
*/
|
|
1523
|
+
createdAt: number;
|
|
1524
|
+
/**
|
|
1525
|
+
* ISO timestamp when the transaction reached finality
|
|
1526
|
+
*/
|
|
1527
|
+
completedAt?: number;
|
|
1528
|
+
/**
|
|
1529
|
+
* Error message if the transaction fails after submission
|
|
1530
|
+
*/
|
|
1531
|
+
error?: {
|
|
1532
|
+
reason: 'build_failed' | 'failed_to_land_on_chain' | 'unknown' | 'sanctioned_wallet_address';
|
|
1533
|
+
message: string;
|
|
1534
|
+
} | {
|
|
1535
|
+
reason: 'program_error';
|
|
1536
|
+
message: string;
|
|
1537
|
+
logs?: unknown;
|
|
1538
|
+
} | {
|
|
1539
|
+
reason: 'execution_reverted';
|
|
1540
|
+
message: string;
|
|
1541
|
+
revert?: {
|
|
1542
|
+
type: 'contract_call' | 'wallet_authorization' | 'wallet_deployment';
|
|
1543
|
+
reason: string;
|
|
1544
|
+
reasonData?: string;
|
|
1545
|
+
explorerLink?: string;
|
|
1546
|
+
simulationLink?: string;
|
|
1547
|
+
};
|
|
1548
|
+
};
|
|
1549
|
+
sendParams?: {
|
|
1550
|
+
/**
|
|
1551
|
+
* The token locator that's being sent
|
|
1552
|
+
*/
|
|
1553
|
+
token: string;
|
|
1554
|
+
/**
|
|
1555
|
+
* The parameters for the send token transaction
|
|
1556
|
+
*/
|
|
1557
|
+
params: {
|
|
1558
|
+
/**
|
|
1559
|
+
* The amount of the token to send
|
|
1560
|
+
*/
|
|
1561
|
+
amount?: string;
|
|
1562
|
+
/**
|
|
1563
|
+
* The recipient locator for the token
|
|
1564
|
+
*/
|
|
1565
|
+
recipient: string;
|
|
1566
|
+
/**
|
|
1567
|
+
* The recipient address for the token
|
|
1568
|
+
*/
|
|
1569
|
+
recipientAddress: string;
|
|
1570
|
+
};
|
|
1571
|
+
};
|
|
1572
|
+
} | {
|
|
1573
|
+
/**
|
|
1574
|
+
* The type of wallet that created this transaction
|
|
1575
|
+
*/
|
|
1576
|
+
walletType: 'solana-mpc-wallet';
|
|
1577
|
+
/**
|
|
1578
|
+
* Solana custodial wallet transaction parameters
|
|
1579
|
+
*/
|
|
1580
|
+
params: {
|
|
1581
|
+
/**
|
|
1582
|
+
* Base58 encoded serialized Solana transaction
|
|
1583
|
+
*/
|
|
1584
|
+
transaction: string;
|
|
1585
|
+
/**
|
|
1586
|
+
* Optional array of additional signers required for the transaction
|
|
1587
|
+
*/
|
|
1588
|
+
requiredSigners?: Array<string>;
|
|
1589
|
+
};
|
|
1590
|
+
/**
|
|
1591
|
+
* Solana custodial wallet transaction data including input parameters and chain specific details
|
|
1592
|
+
*/
|
|
1593
|
+
onChain: {
|
|
1594
|
+
transaction: string;
|
|
1595
|
+
lastValidBlockHeight?: number;
|
|
1596
|
+
txId?: string;
|
|
1597
|
+
};
|
|
1598
|
+
/**
|
|
1599
|
+
* Unique identifier for the transaction
|
|
1600
|
+
*/
|
|
1601
|
+
id: string;
|
|
1602
|
+
/**
|
|
1603
|
+
* Current status of the transaction
|
|
1604
|
+
*/
|
|
1605
|
+
status: 'awaiting-approval' | 'pending' | 'failed' | 'success';
|
|
1606
|
+
/**
|
|
1607
|
+
* Complete approval data including requirements, pending and submitted signatures
|
|
1608
|
+
*/
|
|
1609
|
+
approvals?: {
|
|
1610
|
+
/**
|
|
1611
|
+
* List of pending signatures
|
|
1612
|
+
*/
|
|
1613
|
+
pending: Array<{
|
|
1614
|
+
/**
|
|
1615
|
+
* The locator of the signer that's pending approval
|
|
1616
|
+
*/
|
|
1617
|
+
signer: string;
|
|
1618
|
+
/**
|
|
1619
|
+
* The message that needs to be signed
|
|
1620
|
+
*/
|
|
1621
|
+
message: string;
|
|
1622
|
+
}>;
|
|
1623
|
+
/**
|
|
1624
|
+
* Record of all submitted signatures
|
|
1625
|
+
*/
|
|
1626
|
+
submitted: Array<{
|
|
1627
|
+
/**
|
|
1628
|
+
* The cryptographic signature
|
|
1629
|
+
*/
|
|
1630
|
+
signature: string;
|
|
1631
|
+
/**
|
|
1632
|
+
* When the signature was submitted
|
|
1633
|
+
*/
|
|
1634
|
+
submittedAt: number;
|
|
1635
|
+
/**
|
|
1636
|
+
* Signer Locator
|
|
1637
|
+
* The locator of the signer who submitted this signature
|
|
1638
|
+
*/
|
|
1639
|
+
signer: string;
|
|
1640
|
+
/**
|
|
1641
|
+
* The message that was signed
|
|
1642
|
+
*/
|
|
1643
|
+
message: string;
|
|
1644
|
+
/**
|
|
1645
|
+
* Additional metadata about the signature submission
|
|
1646
|
+
*/
|
|
1647
|
+
metadata?: {
|
|
1648
|
+
deviceInfo?: string;
|
|
1649
|
+
ipAddress?: string;
|
|
1650
|
+
userAgent?: string;
|
|
1651
|
+
};
|
|
1652
|
+
}>;
|
|
1653
|
+
/**
|
|
1654
|
+
* Number of required approvals for the transaction
|
|
1655
|
+
*/
|
|
1656
|
+
required?: number;
|
|
1657
|
+
};
|
|
1658
|
+
/**
|
|
1659
|
+
* ISO timestamp when the transaction was created
|
|
1660
|
+
*/
|
|
1661
|
+
createdAt: number;
|
|
1662
|
+
/**
|
|
1663
|
+
* ISO timestamp when the transaction reached finality
|
|
1664
|
+
*/
|
|
1665
|
+
completedAt?: number;
|
|
1666
|
+
/**
|
|
1667
|
+
* Error message if the transaction fails after submission
|
|
1668
|
+
*/
|
|
1669
|
+
error?: {
|
|
1670
|
+
reason: 'build_failed' | 'failed_to_land_on_chain' | 'unknown' | 'sanctioned_wallet_address';
|
|
1671
|
+
message: string;
|
|
1672
|
+
} | {
|
|
1673
|
+
reason: 'program_error';
|
|
1674
|
+
message: string;
|
|
1675
|
+
logs?: unknown;
|
|
1676
|
+
} | {
|
|
1677
|
+
reason: 'execution_reverted';
|
|
1678
|
+
message: string;
|
|
1679
|
+
revert?: {
|
|
1680
|
+
type: 'contract_call' | 'wallet_authorization' | 'wallet_deployment';
|
|
1681
|
+
reason: string;
|
|
1682
|
+
reasonData?: string;
|
|
1683
|
+
explorerLink?: string;
|
|
1684
|
+
simulationLink?: string;
|
|
1685
|
+
};
|
|
1686
|
+
};
|
|
1687
|
+
sendParams?: {
|
|
1688
|
+
/**
|
|
1689
|
+
* The token locator that's being sent
|
|
1690
|
+
*/
|
|
1691
|
+
token: string;
|
|
1692
|
+
/**
|
|
1693
|
+
* The parameters for the send token transaction
|
|
1694
|
+
*/
|
|
1695
|
+
params: {
|
|
1696
|
+
/**
|
|
1697
|
+
* The amount of the token to send
|
|
1698
|
+
*/
|
|
1699
|
+
amount?: string;
|
|
1700
|
+
/**
|
|
1701
|
+
* The recipient locator for the token
|
|
1702
|
+
*/
|
|
1703
|
+
recipient: string;
|
|
1704
|
+
/**
|
|
1705
|
+
* The recipient address for the token
|
|
1706
|
+
*/
|
|
1707
|
+
recipientAddress: string;
|
|
1708
|
+
};
|
|
1709
|
+
};
|
|
1710
|
+
} | {
|
|
1711
|
+
/**
|
|
1712
|
+
* The type of wallet that created this transaction
|
|
1713
|
+
*/
|
|
1714
|
+
walletType: 'evm-mpc-wallet';
|
|
1715
|
+
/**
|
|
1716
|
+
* EVM MPC wallet transaction parameters
|
|
1717
|
+
*/
|
|
1718
|
+
params: {
|
|
1719
|
+
/**
|
|
1720
|
+
* The transaction call to execute
|
|
1721
|
+
*/
|
|
1722
|
+
call: {
|
|
1723
|
+
/**
|
|
1724
|
+
* The recipient address for this transaction call
|
|
1725
|
+
*/
|
|
1726
|
+
to: string;
|
|
1727
|
+
/**
|
|
1728
|
+
* The encoded calldata for this transaction
|
|
1729
|
+
*/
|
|
1730
|
+
data: unknown;
|
|
1731
|
+
} | {
|
|
1732
|
+
/**
|
|
1733
|
+
* The recipient address for this transaction call
|
|
1734
|
+
*/
|
|
1735
|
+
address: string;
|
|
1736
|
+
/**
|
|
1737
|
+
* The name of the function to call
|
|
1738
|
+
*/
|
|
1739
|
+
functionName: string;
|
|
1740
|
+
/**
|
|
1741
|
+
* The ABI for the function to call
|
|
1742
|
+
*/
|
|
1743
|
+
abi: Array<{
|
|
1744
|
+
type: 'error';
|
|
1745
|
+
inputs: Array<unknown>;
|
|
1746
|
+
name: string;
|
|
1747
|
+
} | {
|
|
1748
|
+
type: 'event';
|
|
1749
|
+
anonymous?: boolean;
|
|
1750
|
+
inputs: Array<unknown & {
|
|
1751
|
+
indexed?: boolean;
|
|
1752
|
+
}>;
|
|
1753
|
+
name: string;
|
|
1754
|
+
} | ({
|
|
1755
|
+
constant?: boolean;
|
|
1756
|
+
gas?: number;
|
|
1757
|
+
payable?: boolean;
|
|
1758
|
+
} & ({
|
|
1759
|
+
type: 'function';
|
|
1760
|
+
inputs: Array<unknown>;
|
|
1761
|
+
name: string;
|
|
1762
|
+
outputs: Array<unknown>;
|
|
1763
|
+
stateMutability: 'pure' | 'view' | 'nonpayable' | 'payable';
|
|
1764
|
+
} | {
|
|
1765
|
+
type: 'constructor';
|
|
1766
|
+
inputs: Array<unknown>;
|
|
1767
|
+
stateMutability: 'payable' | 'nonpayable';
|
|
1768
|
+
} | {
|
|
1769
|
+
type: 'fallback';
|
|
1770
|
+
inputs?: unknown;
|
|
1771
|
+
stateMutability: 'payable' | 'nonpayable';
|
|
1772
|
+
} | {
|
|
1773
|
+
type: 'receive';
|
|
1774
|
+
stateMutability: 'payable';
|
|
1775
|
+
}))>;
|
|
1776
|
+
/**
|
|
1777
|
+
* The arguments to pass to the function
|
|
1778
|
+
*/
|
|
1779
|
+
args: Array<unknown>;
|
|
1780
|
+
};
|
|
1781
|
+
/**
|
|
1782
|
+
* The chain on which the transaction will be executed
|
|
1783
|
+
*/
|
|
1784
|
+
chain: 'arbitrum-sepolia' | 'avalanche-fuji' | 'curtis' | 'barret-testnet' | 'base-goerli' | 'base-sepolia' | 'bsc-testnet' | 'chiliz-spicy-testnet' | 'coti-testnet' | 'ethereum-goerli' | 'ethereum-sepolia' | 'hedera-testnet' | 'hypersonic-testnet' | 'lightlink-pegasus' | 'mantle-sepolia' | 'optimism-goerli' | 'optimism-sepolia' | 'polygon-amoy' | 'polygon-mumbai' | 'crossmint-private-testnet-ethereum' | 'crossmint-private-testnet-polygon' | 'rari-testnet' | 'scroll-sepolia' | 'sei-atlantic-2-testnet' | 'shape-sepolia' | 'skale-nebula-testnet' | 'soneium-minato-testnet' | 'space-testnet' | 'story-testnet' | 'verify-testnet' | 'viction-testnet' | 'xai-sepolia-testnet' | 'zkatana' | 'zkyoto' | 'zora-goerli' | 'zora-sepolia' | 'mode-sepolia' | 'u2u-nebulas' | 'zenchain-testnet' | 'abstract-testnet' | 'world-chain-sepolia' | 'ethereum' | 'polygon' | 'bsc' | 'optimism' | 'arbitrum' | 'base' | 'zora' | 'arbitrumnova' | 'astar-zkevm' | 'apechain' | 'apex' | 'boss' | 'hedera' | 'coti' | 'lightlink' | 'mantle' | 'skale-nebula' | 'sei-pacific-1' | 'chiliz' | 'avalanche' | 'xai' | 'shape' | 'rari' | 'scroll' | 'viction' | 'mode' | 'space' | 'soneium' | 'story' | 'u2u-solaris' | 'abstract' | 'world-chain';
|
|
1785
|
+
};
|
|
1786
|
+
/**
|
|
1787
|
+
* EVM MPC wallet transaction data
|
|
1788
|
+
* EVM MPC wallet transaction data including input parameters and chain specific details
|
|
1789
|
+
*/
|
|
1790
|
+
onChain: {
|
|
1791
|
+
call: {
|
|
1792
|
+
/**
|
|
1793
|
+
* The recipient address for this transaction call
|
|
1794
|
+
*/
|
|
1795
|
+
to: string;
|
|
1796
|
+
/**
|
|
1797
|
+
* The encoded calldata for this transaction
|
|
1798
|
+
*/
|
|
1799
|
+
data: unknown;
|
|
1800
|
+
};
|
|
1801
|
+
txId?: string;
|
|
1802
|
+
explorerLink?: string;
|
|
1803
|
+
};
|
|
1804
|
+
/**
|
|
1805
|
+
* Unique identifier for the transaction
|
|
1806
|
+
*/
|
|
1807
|
+
id: string;
|
|
1808
|
+
/**
|
|
1809
|
+
* Current status of the transaction
|
|
1810
|
+
*/
|
|
1811
|
+
status: 'awaiting-approval' | 'pending' | 'failed' | 'success';
|
|
1812
|
+
/**
|
|
1813
|
+
* Complete approval data including requirements, pending and submitted signatures
|
|
1814
|
+
*/
|
|
1815
|
+
approvals?: {
|
|
1816
|
+
/**
|
|
1817
|
+
* List of pending signatures
|
|
1818
|
+
*/
|
|
1819
|
+
pending: Array<{
|
|
1820
|
+
/**
|
|
1821
|
+
* The locator of the signer that's pending approval
|
|
1822
|
+
*/
|
|
1823
|
+
signer: string;
|
|
1824
|
+
/**
|
|
1825
|
+
* The message that needs to be signed
|
|
1826
|
+
*/
|
|
1827
|
+
message: string;
|
|
1828
|
+
}>;
|
|
1829
|
+
/**
|
|
1830
|
+
* Record of all submitted signatures
|
|
1831
|
+
*/
|
|
1832
|
+
submitted: Array<{
|
|
1833
|
+
/**
|
|
1834
|
+
* The cryptographic signature
|
|
1835
|
+
*/
|
|
1836
|
+
signature: string;
|
|
1837
|
+
/**
|
|
1838
|
+
* When the signature was submitted
|
|
1839
|
+
*/
|
|
1840
|
+
submittedAt: number;
|
|
1841
|
+
/**
|
|
1842
|
+
* Signer Locator
|
|
1843
|
+
* The locator of the signer who submitted this signature
|
|
1844
|
+
*/
|
|
1845
|
+
signer: string;
|
|
1846
|
+
/**
|
|
1847
|
+
* The message that was signed
|
|
1848
|
+
*/
|
|
1849
|
+
message: string;
|
|
1850
|
+
/**
|
|
1851
|
+
* Additional metadata about the signature submission
|
|
1852
|
+
*/
|
|
1853
|
+
metadata?: {
|
|
1854
|
+
deviceInfo?: string;
|
|
1855
|
+
ipAddress?: string;
|
|
1856
|
+
userAgent?: string;
|
|
1857
|
+
};
|
|
1858
|
+
}>;
|
|
1859
|
+
/**
|
|
1860
|
+
* Number of required approvals for the transaction
|
|
1861
|
+
*/
|
|
1862
|
+
required?: number;
|
|
1863
|
+
};
|
|
1864
|
+
/**
|
|
1865
|
+
* ISO timestamp when the transaction was created
|
|
1866
|
+
*/
|
|
1867
|
+
createdAt: number;
|
|
1868
|
+
/**
|
|
1869
|
+
* ISO timestamp when the transaction reached finality
|
|
1870
|
+
*/
|
|
1871
|
+
completedAt?: number;
|
|
1872
|
+
/**
|
|
1873
|
+
* Error message if the transaction fails after submission
|
|
1874
|
+
*/
|
|
1875
|
+
error?: {
|
|
1876
|
+
reason: 'build_failed' | 'failed_to_land_on_chain' | 'unknown' | 'sanctioned_wallet_address';
|
|
1877
|
+
message: string;
|
|
1878
|
+
} | {
|
|
1879
|
+
reason: 'program_error';
|
|
1880
|
+
message: string;
|
|
1881
|
+
logs?: unknown;
|
|
1882
|
+
} | {
|
|
1883
|
+
reason: 'execution_reverted';
|
|
1884
|
+
message: string;
|
|
1885
|
+
revert?: {
|
|
1886
|
+
type: 'contract_call' | 'wallet_authorization' | 'wallet_deployment';
|
|
1887
|
+
reason: string;
|
|
1888
|
+
reasonData?: string;
|
|
1889
|
+
explorerLink?: string;
|
|
1890
|
+
simulationLink?: string;
|
|
1891
|
+
};
|
|
1892
|
+
};
|
|
1893
|
+
sendParams?: {
|
|
1894
|
+
/**
|
|
1895
|
+
* The token locator that's being sent
|
|
1896
|
+
*/
|
|
1897
|
+
token: string;
|
|
1898
|
+
/**
|
|
1899
|
+
* The parameters for the send token transaction
|
|
1900
|
+
*/
|
|
1901
|
+
params: {
|
|
1902
|
+
/**
|
|
1903
|
+
* The amount of the token to send
|
|
1904
|
+
*/
|
|
1905
|
+
amount?: string;
|
|
1906
|
+
/**
|
|
1907
|
+
* The recipient locator for the token
|
|
1908
|
+
*/
|
|
1909
|
+
recipient: string;
|
|
1910
|
+
/**
|
|
1911
|
+
* The recipient address for the token
|
|
1912
|
+
*/
|
|
1913
|
+
recipientAddress: string;
|
|
1914
|
+
};
|
|
1915
|
+
};
|
|
1916
|
+
} | {
|
|
1917
|
+
/**
|
|
1918
|
+
* The type of wallet that created this transaction
|
|
1181
1919
|
*/
|
|
1182
|
-
|
|
1920
|
+
walletType: 'solana-smart-wallet';
|
|
1183
1921
|
/**
|
|
1184
|
-
*
|
|
1922
|
+
* Solana smart wallet transaction parameters
|
|
1185
1923
|
*/
|
|
1186
1924
|
params: {
|
|
1187
1925
|
/**
|
|
1188
|
-
*
|
|
1189
|
-
*/
|
|
1190
|
-
message: string;
|
|
1191
|
-
/**
|
|
1192
|
-
* The locator for the signer who will submit this signature. Defaults to the wallet's admin signer.
|
|
1193
|
-
*/
|
|
1194
|
-
signer?: string;
|
|
1195
|
-
/**
|
|
1196
|
-
* The chain on which the signature will be submitted
|
|
1197
|
-
*/
|
|
1198
|
-
chain: 'arbitrum-sepolia' | 'avalanche-fuji' | 'curtis' | 'barret-testnet' | 'base-goerli' | 'base-sepolia' | 'bsc-testnet' | 'chiliz-spicy-testnet' | 'coti-testnet' | 'ethereum-goerli' | 'ethereum-sepolia' | 'hedera-testnet' | 'hypersonic-testnet' | 'lightlink-pegasus' | 'mantle-sepolia' | 'optimism-goerli' | 'optimism-sepolia' | 'polygon-amoy' | 'polygon-mumbai' | 'crossmint-private-testnet-ethereum' | 'crossmint-private-testnet-polygon' | 'rari-testnet' | 'scroll-sepolia' | 'sei-atlantic-2-testnet' | 'shape-sepolia' | 'skale-nebula-testnet' | 'soneium-minato-testnet' | 'space-testnet' | 'story-testnet' | 'verify-testnet' | 'viction-testnet' | 'xai-sepolia-testnet' | 'zkatana' | 'zkyoto' | 'zora-goerli' | 'zora-sepolia' | 'mode-sepolia' | 'u2u-nebulas' | 'zenchain-testnet' | 'abstract-testnet' | 'world-chain-sepolia' | 'ethereum' | 'polygon' | 'bsc' | 'optimism' | 'arbitrum' | 'base' | 'zora' | 'arbitrumnova' | 'astar-zkevm' | 'apechain' | 'apex' | 'boss' | 'hedera' | 'coti' | 'lightlink' | 'mantle' | 'skale-nebula' | 'sei-pacific-1' | 'chiliz' | 'avalanche' | 'xai' | 'shape' | 'rari' | 'scroll' | 'viction' | 'mode' | 'space' | 'soneium' | 'story' | 'u2u-solaris' | 'abstract' | 'world-chain';
|
|
1199
|
-
} | {
|
|
1200
|
-
/**
|
|
1201
|
-
* The message in plain text to sign
|
|
1926
|
+
* Base58 encoded serialized Solana transaction
|
|
1202
1927
|
*/
|
|
1203
|
-
|
|
1204
|
-
} | {
|
|
1205
|
-
typedData: {
|
|
1206
|
-
domain: {
|
|
1207
|
-
name: string;
|
|
1208
|
-
version: string;
|
|
1209
|
-
chainId: number;
|
|
1210
|
-
/**
|
|
1211
|
-
* An EVM address string
|
|
1212
|
-
*/
|
|
1213
|
-
verifyingContract: string;
|
|
1214
|
-
salt?: string;
|
|
1215
|
-
};
|
|
1216
|
-
types: {
|
|
1217
|
-
[key: string]: Array<{
|
|
1218
|
-
name: string;
|
|
1219
|
-
type: string;
|
|
1220
|
-
}>;
|
|
1221
|
-
};
|
|
1222
|
-
primaryType: string;
|
|
1223
|
-
message: {};
|
|
1224
|
-
};
|
|
1928
|
+
transaction: string;
|
|
1225
1929
|
/**
|
|
1226
|
-
*
|
|
1930
|
+
* Optional array of additional signers required for the transaction
|
|
1227
1931
|
*/
|
|
1228
|
-
|
|
1932
|
+
requiredSigners?: Array<string>;
|
|
1229
1933
|
/**
|
|
1230
|
-
*
|
|
1934
|
+
* Signer Locator
|
|
1935
|
+
* The locator for the signer who will submit this transaction. Defaults to the admin signer.
|
|
1231
1936
|
*/
|
|
1232
1937
|
signer?: string;
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1938
|
+
feeConfig: {
|
|
1939
|
+
/**
|
|
1940
|
+
* The address that will pay for the transaction
|
|
1941
|
+
*/
|
|
1942
|
+
feePayer: string;
|
|
1943
|
+
/**
|
|
1944
|
+
* The token to use for the fee
|
|
1945
|
+
*/
|
|
1946
|
+
token: 'sol' | 'usdc' | 'usdt';
|
|
1947
|
+
/**
|
|
1948
|
+
* The amount of the fee
|
|
1949
|
+
*/
|
|
1950
|
+
amount: string;
|
|
1951
|
+
} | {
|
|
1952
|
+
feePayer: 'crossmint';
|
|
1953
|
+
/**
|
|
1954
|
+
* The amount of the fee
|
|
1955
|
+
*/
|
|
1956
|
+
amount: string;
|
|
1957
|
+
};
|
|
1958
|
+
};
|
|
1959
|
+
/**
|
|
1960
|
+
* Solana smart wallet transaction data including input parameters and chain specific details
|
|
1961
|
+
*/
|
|
1962
|
+
onChain: {
|
|
1963
|
+
transaction: string;
|
|
1964
|
+
lastValidBlockHeight?: number;
|
|
1965
|
+
txId?: string;
|
|
1237
1966
|
};
|
|
1967
|
+
/**
|
|
1968
|
+
* Unique identifier for the transaction
|
|
1969
|
+
*/
|
|
1970
|
+
id: string;
|
|
1971
|
+
/**
|
|
1972
|
+
* Current status of the transaction
|
|
1973
|
+
*/
|
|
1974
|
+
status: 'awaiting-approval' | 'pending' | 'failed' | 'success';
|
|
1238
1975
|
/**
|
|
1239
1976
|
* Complete approval data including requirements, pending and submitted signatures
|
|
1240
1977
|
*/
|
|
@@ -1265,6 +2002,7 @@ type WalletsV1Alpha2SignatureResponseDto = {
|
|
|
1265
2002
|
*/
|
|
1266
2003
|
submittedAt: number;
|
|
1267
2004
|
/**
|
|
2005
|
+
* Signer Locator
|
|
1268
2006
|
* The locator of the signer who submitted this signature
|
|
1269
2007
|
*/
|
|
1270
2008
|
signer: string;
|
|
@@ -1287,7 +2025,7 @@ type WalletsV1Alpha2SignatureResponseDto = {
|
|
|
1287
2025
|
required?: number;
|
|
1288
2026
|
};
|
|
1289
2027
|
/**
|
|
1290
|
-
* ISO timestamp when the
|
|
2028
|
+
* ISO timestamp when the transaction was created
|
|
1291
2029
|
*/
|
|
1292
2030
|
createdAt: number;
|
|
1293
2031
|
/**
|
|
@@ -1295,18 +2033,54 @@ type WalletsV1Alpha2SignatureResponseDto = {
|
|
|
1295
2033
|
*/
|
|
1296
2034
|
completedAt?: number;
|
|
1297
2035
|
/**
|
|
1298
|
-
* Error message if the
|
|
1299
|
-
*/
|
|
1300
|
-
error?: unknown;
|
|
1301
|
-
/**
|
|
1302
|
-
* The wallet's output signature of the request
|
|
2036
|
+
* Error message if the transaction fails after submission
|
|
1303
2037
|
*/
|
|
1304
|
-
|
|
2038
|
+
error?: {
|
|
2039
|
+
reason: 'build_failed' | 'failed_to_land_on_chain' | 'unknown' | 'sanctioned_wallet_address';
|
|
2040
|
+
message: string;
|
|
2041
|
+
} | {
|
|
2042
|
+
reason: 'program_error';
|
|
2043
|
+
message: string;
|
|
2044
|
+
logs?: unknown;
|
|
2045
|
+
} | {
|
|
2046
|
+
reason: 'execution_reverted';
|
|
2047
|
+
message: string;
|
|
2048
|
+
revert?: {
|
|
2049
|
+
type: 'contract_call' | 'wallet_authorization' | 'wallet_deployment';
|
|
2050
|
+
reason: string;
|
|
2051
|
+
reasonData?: string;
|
|
2052
|
+
explorerLink?: string;
|
|
2053
|
+
simulationLink?: string;
|
|
2054
|
+
};
|
|
2055
|
+
};
|
|
2056
|
+
sendParams?: {
|
|
2057
|
+
/**
|
|
2058
|
+
* The token locator that's being sent
|
|
2059
|
+
*/
|
|
2060
|
+
token: string;
|
|
2061
|
+
/**
|
|
2062
|
+
* The parameters for the send token transaction
|
|
2063
|
+
*/
|
|
2064
|
+
params: {
|
|
2065
|
+
/**
|
|
2066
|
+
* The amount of the token to send
|
|
2067
|
+
*/
|
|
2068
|
+
amount?: string;
|
|
2069
|
+
/**
|
|
2070
|
+
* The recipient locator for the token
|
|
2071
|
+
*/
|
|
2072
|
+
recipient: string;
|
|
2073
|
+
/**
|
|
2074
|
+
* The recipient address for the token
|
|
2075
|
+
*/
|
|
2076
|
+
recipientAddress: string;
|
|
2077
|
+
};
|
|
2078
|
+
};
|
|
1305
2079
|
};
|
|
1306
2080
|
/**
|
|
1307
2081
|
* Complete transaction response including status, signing requirements, and wallet type specific data
|
|
1308
2082
|
*/
|
|
1309
|
-
type
|
|
2083
|
+
type WalletsV1Alpha2TransactionResponseWithSendParamsDto = {
|
|
1310
2084
|
/**
|
|
1311
2085
|
* The type of wallet that created this transaction
|
|
1312
2086
|
*/
|
|
@@ -1395,11 +2169,13 @@ type WalletsV1Alpha2TransactionResponseDto = {
|
|
|
1395
2169
|
*/
|
|
1396
2170
|
chain: 'base' | 'polygon' | 'optimism' | 'arbitrum' | 'mode' | 'story' | 'bsc' | 'shape' | 'ethereum-sepolia' | 'base-sepolia' | 'polygon-amoy' | 'optimism-sepolia' | 'arbitrum-sepolia' | 'mode-sepolia' | 'story-testnet';
|
|
1397
2171
|
/**
|
|
2172
|
+
* Signer Locator
|
|
1398
2173
|
* The locator for the signer who will submit this transaction
|
|
1399
2174
|
*/
|
|
1400
2175
|
signer?: string;
|
|
1401
2176
|
};
|
|
1402
2177
|
/**
|
|
2178
|
+
* EVM smart wallet transaction data
|
|
1403
2179
|
* EVM smart wallet transaction data including input parameters and chain specific details
|
|
1404
2180
|
*/
|
|
1405
2181
|
onChain: {
|
|
@@ -1462,6 +2238,7 @@ type WalletsV1Alpha2TransactionResponseDto = {
|
|
|
1462
2238
|
*/
|
|
1463
2239
|
submittedAt: number;
|
|
1464
2240
|
/**
|
|
2241
|
+
* Signer Locator
|
|
1465
2242
|
* The locator of the signer who submitted this signature
|
|
1466
2243
|
*/
|
|
1467
2244
|
signer: string;
|
|
@@ -1599,6 +2376,7 @@ type WalletsV1Alpha2TransactionResponseDto = {
|
|
|
1599
2376
|
*/
|
|
1600
2377
|
submittedAt: number;
|
|
1601
2378
|
/**
|
|
2379
|
+
* Signer Locator
|
|
1602
2380
|
* The locator of the signer who submitted this signature
|
|
1603
2381
|
*/
|
|
1604
2382
|
signer: string;
|
|
@@ -1749,6 +2527,7 @@ type WalletsV1Alpha2TransactionResponseDto = {
|
|
|
1749
2527
|
chain: 'arbitrum-sepolia' | 'avalanche-fuji' | 'curtis' | 'barret-testnet' | 'base-goerli' | 'base-sepolia' | 'bsc-testnet' | 'chiliz-spicy-testnet' | 'coti-testnet' | 'ethereum-goerli' | 'ethereum-sepolia' | 'hedera-testnet' | 'hypersonic-testnet' | 'lightlink-pegasus' | 'mantle-sepolia' | 'optimism-goerli' | 'optimism-sepolia' | 'polygon-amoy' | 'polygon-mumbai' | 'crossmint-private-testnet-ethereum' | 'crossmint-private-testnet-polygon' | 'rari-testnet' | 'scroll-sepolia' | 'sei-atlantic-2-testnet' | 'shape-sepolia' | 'skale-nebula-testnet' | 'soneium-minato-testnet' | 'space-testnet' | 'story-testnet' | 'verify-testnet' | 'viction-testnet' | 'xai-sepolia-testnet' | 'zkatana' | 'zkyoto' | 'zora-goerli' | 'zora-sepolia' | 'mode-sepolia' | 'u2u-nebulas' | 'zenchain-testnet' | 'abstract-testnet' | 'world-chain-sepolia' | 'ethereum' | 'polygon' | 'bsc' | 'optimism' | 'arbitrum' | 'base' | 'zora' | 'arbitrumnova' | 'astar-zkevm' | 'apechain' | 'apex' | 'boss' | 'hedera' | 'coti' | 'lightlink' | 'mantle' | 'skale-nebula' | 'sei-pacific-1' | 'chiliz' | 'avalanche' | 'xai' | 'shape' | 'rari' | 'scroll' | 'viction' | 'mode' | 'space' | 'soneium' | 'story' | 'u2u-solaris' | 'abstract' | 'world-chain';
|
|
1750
2528
|
};
|
|
1751
2529
|
/**
|
|
2530
|
+
* EVM MPC wallet transaction data
|
|
1752
2531
|
* EVM MPC wallet transaction data including input parameters and chain specific details
|
|
1753
2532
|
*/
|
|
1754
2533
|
onChain: {
|
|
@@ -1803,6 +2582,7 @@ type WalletsV1Alpha2TransactionResponseDto = {
|
|
|
1803
2582
|
*/
|
|
1804
2583
|
submittedAt: number;
|
|
1805
2584
|
/**
|
|
2585
|
+
* Signer Locator
|
|
1806
2586
|
* The locator of the signer who submitted this signature
|
|
1807
2587
|
*/
|
|
1808
2588
|
signer: string;
|
|
@@ -1894,6 +2674,7 @@ type WalletsV1Alpha2TransactionResponseDto = {
|
|
|
1894
2674
|
*/
|
|
1895
2675
|
requiredSigners?: Array<string>;
|
|
1896
2676
|
/**
|
|
2677
|
+
* Signer Locator
|
|
1897
2678
|
* The locator for the signer who will submit this transaction. Defaults to the admin signer.
|
|
1898
2679
|
*/
|
|
1899
2680
|
signer?: string;
|
|
@@ -1964,6 +2745,7 @@ type WalletsV1Alpha2TransactionResponseDto = {
|
|
|
1964
2745
|
*/
|
|
1965
2746
|
submittedAt: number;
|
|
1966
2747
|
/**
|
|
2748
|
+
* Signer Locator
|
|
1967
2749
|
* The locator of the signer who submitted this signature
|
|
1968
2750
|
*/
|
|
1969
2751
|
signer: string;
|
|
@@ -2039,6 +2821,7 @@ type WalletsV1Alpha2TransactionResponseDto = {
|
|
|
2039
2821
|
};
|
|
2040
2822
|
};
|
|
2041
2823
|
/**
|
|
2824
|
+
* Transactions Response
|
|
2042
2825
|
* List of transactions with their status, signing requirements, and wallet type specific data
|
|
2043
2826
|
*/
|
|
2044
2827
|
type WalletsV1Alpha2TransactionsResponseDto = {
|
|
@@ -2134,11 +2917,13 @@ type WalletsV1Alpha2TransactionsResponseDto = {
|
|
|
2134
2917
|
*/
|
|
2135
2918
|
chain: 'base' | 'polygon' | 'optimism' | 'arbitrum' | 'mode' | 'story' | 'bsc' | 'shape' | 'ethereum-sepolia' | 'base-sepolia' | 'polygon-amoy' | 'optimism-sepolia' | 'arbitrum-sepolia' | 'mode-sepolia' | 'story-testnet';
|
|
2136
2919
|
/**
|
|
2920
|
+
* Signer Locator
|
|
2137
2921
|
* The locator for the signer who will submit this transaction
|
|
2138
2922
|
*/
|
|
2139
2923
|
signer?: string;
|
|
2140
2924
|
};
|
|
2141
2925
|
/**
|
|
2926
|
+
* EVM smart wallet transaction data
|
|
2142
2927
|
* EVM smart wallet transaction data including input parameters and chain specific details
|
|
2143
2928
|
*/
|
|
2144
2929
|
onChain: {
|
|
@@ -2201,6 +2986,7 @@ type WalletsV1Alpha2TransactionsResponseDto = {
|
|
|
2201
2986
|
*/
|
|
2202
2987
|
submittedAt: number;
|
|
2203
2988
|
/**
|
|
2989
|
+
* Signer Locator
|
|
2204
2990
|
* The locator of the signer who submitted this signature
|
|
2205
2991
|
*/
|
|
2206
2992
|
signer: string;
|
|
@@ -2338,6 +3124,7 @@ type WalletsV1Alpha2TransactionsResponseDto = {
|
|
|
2338
3124
|
*/
|
|
2339
3125
|
submittedAt: number;
|
|
2340
3126
|
/**
|
|
3127
|
+
* Signer Locator
|
|
2341
3128
|
* The locator of the signer who submitted this signature
|
|
2342
3129
|
*/
|
|
2343
3130
|
signer: string;
|
|
@@ -2488,6 +3275,7 @@ type WalletsV1Alpha2TransactionsResponseDto = {
|
|
|
2488
3275
|
chain: 'arbitrum-sepolia' | 'avalanche-fuji' | 'curtis' | 'barret-testnet' | 'base-goerli' | 'base-sepolia' | 'bsc-testnet' | 'chiliz-spicy-testnet' | 'coti-testnet' | 'ethereum-goerli' | 'ethereum-sepolia' | 'hedera-testnet' | 'hypersonic-testnet' | 'lightlink-pegasus' | 'mantle-sepolia' | 'optimism-goerli' | 'optimism-sepolia' | 'polygon-amoy' | 'polygon-mumbai' | 'crossmint-private-testnet-ethereum' | 'crossmint-private-testnet-polygon' | 'rari-testnet' | 'scroll-sepolia' | 'sei-atlantic-2-testnet' | 'shape-sepolia' | 'skale-nebula-testnet' | 'soneium-minato-testnet' | 'space-testnet' | 'story-testnet' | 'verify-testnet' | 'viction-testnet' | 'xai-sepolia-testnet' | 'zkatana' | 'zkyoto' | 'zora-goerli' | 'zora-sepolia' | 'mode-sepolia' | 'u2u-nebulas' | 'zenchain-testnet' | 'abstract-testnet' | 'world-chain-sepolia' | 'ethereum' | 'polygon' | 'bsc' | 'optimism' | 'arbitrum' | 'base' | 'zora' | 'arbitrumnova' | 'astar-zkevm' | 'apechain' | 'apex' | 'boss' | 'hedera' | 'coti' | 'lightlink' | 'mantle' | 'skale-nebula' | 'sei-pacific-1' | 'chiliz' | 'avalanche' | 'xai' | 'shape' | 'rari' | 'scroll' | 'viction' | 'mode' | 'space' | 'soneium' | 'story' | 'u2u-solaris' | 'abstract' | 'world-chain';
|
|
2489
3276
|
};
|
|
2490
3277
|
/**
|
|
3278
|
+
* EVM MPC wallet transaction data
|
|
2491
3279
|
* EVM MPC wallet transaction data including input parameters and chain specific details
|
|
2492
3280
|
*/
|
|
2493
3281
|
onChain: {
|
|
@@ -2542,6 +3330,7 @@ type WalletsV1Alpha2TransactionsResponseDto = {
|
|
|
2542
3330
|
*/
|
|
2543
3331
|
submittedAt: number;
|
|
2544
3332
|
/**
|
|
3333
|
+
* Signer Locator
|
|
2545
3334
|
* The locator of the signer who submitted this signature
|
|
2546
3335
|
*/
|
|
2547
3336
|
signer: string;
|
|
@@ -2633,6 +3422,7 @@ type WalletsV1Alpha2TransactionsResponseDto = {
|
|
|
2633
3422
|
*/
|
|
2634
3423
|
requiredSigners?: Array<string>;
|
|
2635
3424
|
/**
|
|
3425
|
+
* Signer Locator
|
|
2636
3426
|
* The locator for the signer who will submit this transaction. Defaults to the admin signer.
|
|
2637
3427
|
*/
|
|
2638
3428
|
signer?: string;
|
|
@@ -2703,6 +3493,7 @@ type WalletsV1Alpha2TransactionsResponseDto = {
|
|
|
2703
3493
|
*/
|
|
2704
3494
|
submittedAt: number;
|
|
2705
3495
|
/**
|
|
3496
|
+
* Signer Locator
|
|
2706
3497
|
* The locator of the signer who submitted this signature
|
|
2707
3498
|
*/
|
|
2708
3499
|
signer: string;
|
|
@@ -2930,6 +3721,7 @@ type WalletV1Alpha2ResponseDto = {
|
|
|
2930
3721
|
*/
|
|
2931
3722
|
type: 'evm-keypair' | 'evm-fireblocks-custodial' | 'evm-passkey';
|
|
2932
3723
|
/**
|
|
3724
|
+
* Signer Locator
|
|
2933
3725
|
* The locator of the signer
|
|
2934
3726
|
*/
|
|
2935
3727
|
locator: string;
|
|
@@ -3061,6 +3853,7 @@ type WalletV1Alpha2ResponseDto = {
|
|
|
3061
3853
|
*/
|
|
3062
3854
|
type: 'solana-keypair' | 'solana-fireblocks-custodial';
|
|
3063
3855
|
/**
|
|
3856
|
+
* Signer Locator
|
|
3064
3857
|
* The locator of the signer
|
|
3065
3858
|
*/
|
|
3066
3859
|
locator: string;
|
|
@@ -3114,6 +3907,7 @@ type WalletV1Alpha2ResponseDto = {
|
|
|
3114
3907
|
*/
|
|
3115
3908
|
submittedAt: number;
|
|
3116
3909
|
/**
|
|
3910
|
+
* Signer Locator
|
|
3117
3911
|
* The locator of the signer who submitted this signature
|
|
3118
3912
|
*/
|
|
3119
3913
|
signer: string;
|
|
@@ -3314,6 +4108,7 @@ type WalletV1Alpha2TransactionErrorDto = {
|
|
|
3314
4108
|
message: string;
|
|
3315
4109
|
};
|
|
3316
4110
|
/**
|
|
4111
|
+
* EVM
|
|
3317
4112
|
* EVM
|
|
3318
4113
|
*/
|
|
3319
4114
|
type Nftevm = Array<{
|
|
@@ -3365,6 +4160,7 @@ type Nftevm = Array<{
|
|
|
3365
4160
|
};
|
|
3366
4161
|
}>;
|
|
3367
4162
|
/**
|
|
4163
|
+
* Solana
|
|
3368
4164
|
* Solana
|
|
3369
4165
|
*/
|
|
3370
4166
|
type Nftsol = Array<{
|
|
@@ -3547,6 +4343,7 @@ type WalletsV1ControllerGetMeDelegatedSigner5Data = {
|
|
|
3547
4343
|
path: {
|
|
3548
4344
|
walletType: string;
|
|
3549
4345
|
/**
|
|
4346
|
+
* Signer Locator
|
|
3550
4347
|
* A signer locator that can be either a of format '<signerAddress>' for keypair type signers or '<signerType>:<signerIdentifier>'
|
|
3551
4348
|
*/
|
|
3552
4349
|
signer: string;
|
|
@@ -3698,6 +4495,39 @@ type WalletsV1ControllerCreateMeSignatureRequest5Responses = {
|
|
|
3698
4495
|
201: WalletsV1Alpha2SignatureResponseDto;
|
|
3699
4496
|
};
|
|
3700
4497
|
type WalletsV1ControllerCreateMeSignatureRequest5Response = WalletsV1ControllerCreateMeSignatureRequest5Responses[keyof WalletsV1ControllerCreateMeSignatureRequest5Responses];
|
|
4498
|
+
type WalletsV1ControllerGetMeWalletActivity5Data = {
|
|
4499
|
+
body?: never;
|
|
4500
|
+
headers: {
|
|
4501
|
+
/**
|
|
4502
|
+
* API key required for authentication
|
|
4503
|
+
*/
|
|
4504
|
+
'X-API-KEY': string;
|
|
4505
|
+
};
|
|
4506
|
+
path: {
|
|
4507
|
+
walletType: string;
|
|
4508
|
+
};
|
|
4509
|
+
query: {
|
|
4510
|
+
/**
|
|
4511
|
+
* The blockchain network to query. Either an EVM chain or Solana.
|
|
4512
|
+
*/
|
|
4513
|
+
chain: 'arbitrum-sepolia' | 'avalanche-fuji' | 'curtis' | 'barret-testnet' | 'base-goerli' | 'base-sepolia' | 'bsc-testnet' | 'chiliz-spicy-testnet' | 'coti-testnet' | 'ethereum-goerli' | 'ethereum-sepolia' | 'hedera-testnet' | 'hypersonic-testnet' | 'lightlink-pegasus' | 'mantle-sepolia' | 'optimism-goerli' | 'optimism-sepolia' | 'polygon-amoy' | 'polygon-mumbai' | 'crossmint-private-testnet-ethereum' | 'crossmint-private-testnet-polygon' | 'rari-testnet' | 'scroll-sepolia' | 'sei-atlantic-2-testnet' | 'shape-sepolia' | 'skale-nebula-testnet' | 'soneium-minato-testnet' | 'space-testnet' | 'story-testnet' | 'verify-testnet' | 'viction-testnet' | 'xai-sepolia-testnet' | 'zkatana' | 'zkyoto' | 'zora-goerli' | 'zora-sepolia' | 'mode-sepolia' | 'u2u-nebulas' | 'zenchain-testnet' | 'abstract-testnet' | 'world-chain-sepolia' | 'ethereum' | 'polygon' | 'bsc' | 'optimism' | 'arbitrum' | 'base' | 'zora' | 'arbitrumnova' | 'astar-zkevm' | 'apechain' | 'apex' | 'boss' | 'hedera' | 'coti' | 'lightlink' | 'mantle' | 'skale-nebula' | 'sei-pacific-1' | 'chiliz' | 'avalanche' | 'xai' | 'shape' | 'rari' | 'scroll' | 'viction' | 'mode' | 'space' | 'soneium' | 'story' | 'u2u-solaris' | 'abstract' | 'world-chain' | 'solana';
|
|
4514
|
+
};
|
|
4515
|
+
url: '/v1-alpha2/wallets/me{walletType}/activity';
|
|
4516
|
+
};
|
|
4517
|
+
type WalletsV1ControllerGetMeWalletActivity5Errors = {
|
|
4518
|
+
/**
|
|
4519
|
+
* Returns an error if a wallet with the specified type not found for the authenticated user
|
|
4520
|
+
*/
|
|
4521
|
+
404: WalletV1Alpha2ErrorDto;
|
|
4522
|
+
};
|
|
4523
|
+
type WalletsV1ControllerGetMeWalletActivity5Error = WalletsV1ControllerGetMeWalletActivity5Errors[keyof WalletsV1ControllerGetMeWalletActivity5Errors];
|
|
4524
|
+
type WalletsV1ControllerGetMeWalletActivity5Responses = {
|
|
4525
|
+
/**
|
|
4526
|
+
* The wallet activity has been successfully retrieved.
|
|
4527
|
+
*/
|
|
4528
|
+
200: WalletsV1Alpha2ActivityResponseDto;
|
|
4529
|
+
};
|
|
4530
|
+
type WalletsV1ControllerGetMeWalletActivity5Response = WalletsV1ControllerGetMeWalletActivity5Responses[keyof WalletsV1ControllerGetMeWalletActivity5Responses];
|
|
3701
4531
|
type WalletsV1ControllerGetMeWallet5Data = {
|
|
3702
4532
|
body?: never;
|
|
3703
4533
|
headers: {
|
|
@@ -3940,6 +4770,7 @@ type WalletsV1ControllerGetDelegatedSigner5Data = {
|
|
|
3940
4770
|
*/
|
|
3941
4771
|
walletLocator: string;
|
|
3942
4772
|
/**
|
|
4773
|
+
* Signer Locator
|
|
3943
4774
|
* A signer locator that can be either a of format '<signerAddress>' for keypair type signers or '<signerType>:<signerIdentifier>'
|
|
3944
4775
|
*/
|
|
3945
4776
|
signer: string;
|
|
@@ -4312,7 +5143,12 @@ type WalletsV1ControllerGetWalletActivity5Data = {
|
|
|
4312
5143
|
*/
|
|
4313
5144
|
walletLocator: string;
|
|
4314
5145
|
};
|
|
4315
|
-
query
|
|
5146
|
+
query: {
|
|
5147
|
+
/**
|
|
5148
|
+
* The blockchain network to query. Either an EVM chain or Solana.
|
|
5149
|
+
*/
|
|
5150
|
+
chain: 'arbitrum-sepolia' | 'avalanche-fuji' | 'curtis' | 'barret-testnet' | 'base-goerli' | 'base-sepolia' | 'bsc-testnet' | 'chiliz-spicy-testnet' | 'coti-testnet' | 'ethereum-goerli' | 'ethereum-sepolia' | 'hedera-testnet' | 'hypersonic-testnet' | 'lightlink-pegasus' | 'mantle-sepolia' | 'optimism-goerli' | 'optimism-sepolia' | 'polygon-amoy' | 'polygon-mumbai' | 'crossmint-private-testnet-ethereum' | 'crossmint-private-testnet-polygon' | 'rari-testnet' | 'scroll-sepolia' | 'sei-atlantic-2-testnet' | 'shape-sepolia' | 'skale-nebula-testnet' | 'soneium-minato-testnet' | 'space-testnet' | 'story-testnet' | 'verify-testnet' | 'viction-testnet' | 'xai-sepolia-testnet' | 'zkatana' | 'zkyoto' | 'zora-goerli' | 'zora-sepolia' | 'mode-sepolia' | 'u2u-nebulas' | 'zenchain-testnet' | 'abstract-testnet' | 'world-chain-sepolia' | 'ethereum' | 'polygon' | 'bsc' | 'optimism' | 'arbitrum' | 'base' | 'zora' | 'arbitrumnova' | 'astar-zkevm' | 'apechain' | 'apex' | 'boss' | 'hedera' | 'coti' | 'lightlink' | 'mantle' | 'skale-nebula' | 'sei-pacific-1' | 'chiliz' | 'avalanche' | 'xai' | 'shape' | 'rari' | 'scroll' | 'viction' | 'mode' | 'space' | 'soneium' | 'story' | 'u2u-solaris' | 'abstract' | 'world-chain' | 'solana';
|
|
5151
|
+
};
|
|
4316
5152
|
url: '/v1-alpha2/wallets/{walletLocator}/activity';
|
|
4317
5153
|
};
|
|
4318
5154
|
type WalletsV1ControllerGetWalletActivity5Errors = {
|
|
@@ -4397,6 +5233,38 @@ type WalletsV1ControllerCreateWallet5Responses = {
|
|
|
4397
5233
|
201: WalletV1Alpha2ResponseDto;
|
|
4398
5234
|
};
|
|
4399
5235
|
type WalletsV1ControllerCreateWallet5Response = WalletsV1ControllerCreateWallet5Responses[keyof WalletsV1ControllerCreateWallet5Responses];
|
|
5236
|
+
type WalletsSendTokenControllerSendMeToken2Data = {
|
|
5237
|
+
body: SendTokenDto;
|
|
5238
|
+
headers: {
|
|
5239
|
+
/**
|
|
5240
|
+
* API key required for authentication
|
|
5241
|
+
*/
|
|
5242
|
+
'X-API-KEY': string;
|
|
5243
|
+
/**
|
|
5244
|
+
* Unique key to prevent duplicate transaction creation
|
|
5245
|
+
*/
|
|
5246
|
+
'x-idempotency-key'?: string;
|
|
5247
|
+
};
|
|
5248
|
+
path: {
|
|
5249
|
+
walletType: string;
|
|
5250
|
+
/**
|
|
5251
|
+
* A token locator that supports native tokens, fungible tokens, and NFTs across different chains. It can be of the format:
|
|
5252
|
+
* - `chain:address[:tokenId]`
|
|
5253
|
+
* - `chain:currency`
|
|
5254
|
+
* - `chain:address`
|
|
5255
|
+
*/
|
|
5256
|
+
tokenLocator: string;
|
|
5257
|
+
};
|
|
5258
|
+
query?: never;
|
|
5259
|
+
url: '/unstable/wallets/me{walletType}/tokens/{tokenLocator}/transfers';
|
|
5260
|
+
};
|
|
5261
|
+
type WalletsSendTokenControllerSendMeToken2Responses = {
|
|
5262
|
+
/**
|
|
5263
|
+
* The transaction has been successfully created.
|
|
5264
|
+
*/
|
|
5265
|
+
201: WalletsV1Alpha2TransactionResponseDto;
|
|
5266
|
+
};
|
|
5267
|
+
type WalletsSendTokenControllerSendMeToken2Response = WalletsSendTokenControllerSendMeToken2Responses[keyof WalletsSendTokenControllerSendMeToken2Responses];
|
|
4400
5268
|
type WalletsSendTokenControllerSendToken2Data = {
|
|
4401
5269
|
body: SendTokenDto;
|
|
4402
5270
|
headers: {
|
|
@@ -4436,7 +5304,7 @@ type WalletsSendTokenControllerSendToken2Responses = {
|
|
|
4436
5304
|
/**
|
|
4437
5305
|
* The transaction has been successfully created.
|
|
4438
5306
|
*/
|
|
4439
|
-
201:
|
|
5307
|
+
201: WalletsV1Alpha2TransactionResponseWithSendParamsDto;
|
|
4440
5308
|
};
|
|
4441
5309
|
type WalletsSendTokenControllerSendToken2Response = WalletsSendTokenControllerSendToken2Responses[keyof WalletsSendTokenControllerSendToken2Responses];
|
|
4442
5310
|
type BalanceUnstableControllerGetBalanceForLocator2Data = {
|
|
@@ -4486,18 +5354,6 @@ type BalanceUnstableControllerGetBalanceForLocator2Responses = {
|
|
|
4486
5354
|
200: WalletBalanceUnstableResponseDto;
|
|
4487
5355
|
};
|
|
4488
5356
|
type BalanceUnstableControllerGetBalanceForLocator2Response = BalanceUnstableControllerGetBalanceForLocator2Responses[keyof BalanceUnstableControllerGetBalanceForLocator2Responses];
|
|
4489
|
-
type WalletBalanceControllerGetBalanceForLocatorAndCurrency2Data = {
|
|
4490
|
-
body?: never;
|
|
4491
|
-
path: {
|
|
4492
|
-
locator: string;
|
|
4493
|
-
currency: 'ape' | 'bnb' | 'coti' | 'eth' | 'matic' | 'mnt' | 'pol' | 'sei' | 'chz' | 'avax' | 'xai' | 'fuel' | 'hbar' | 'vic' | 'ip' | 'zcx' | 'u2u' | 'usdc' | 'usdce' | 'busd' | 'usdxm' | 'usdt' | 'credit' | 'weth' | 'degen' | 'brett' | 'toshi' | 'eurc' | 'superverse' | 'pirate' | 'wld' | 'bonk' | 'trump' | 'fartcoin' | 'giga' | 'moodeng' | 'jailstool' | 'wen' | 'mlg' | 'duo' | 'pep' | 'harambe' | 'usedcar' | 'vine' | 'fartboy' | 'pnut' | 'stonks' | 'mew' | 'baby' | 'michi' | 'butthole' | 'anglerfish' | 'usa' | 'chillguy' | 'sigma' | 'maneki' | 'purpe' | 'lockin' | 'y2k' | 'fafo' | 'nub' | 'fullsend' | 'shoggoth' | 'mini' | 'llm' | 'sc' | 'fatgf' | 'pwease' | 'popcat' | 'spx' | 'fwog' | 'mother' | 'wif' | 'fric' | 'etf' | 'gyat' | 'bigballs' | 'goat' | 'stupid' | 'duko' | 'bitcoin' | 'buttcoin' | 'mcdull' | 'skbdi' | 'elon4afd' | 'mumu' | 'gme' | 'biao' | 'fred' | 'pengu' | 'asscoin' | 'bhad' | 'habibi' | 'quant' | 'hammy' | 'boden' | 'dolan' | 'nap' | 'scf' | 'titcoin' | 'zerebro' | 'rfc' | 'luce' | 'melania' | 'slerf' | 'bome' | 'ban' | 'pippin' | 'ghibli' | 'figure' | 'retardio' | 'memesai' | 'dogeai' | 'memecoin' | 'routine' | 'troll' | 'nobody' | 'italianrot' | 'jockey' | 'pppp' | 'useless' | 'gork' | 'hosico' | 'neet' | 'urmom' | 'bert' | 'fog' | 'mog' | 'boopa' | 'wizard' | 'trencher' | 'chacha' | 'aurafarm' | 'sol' | 'sui' | 'apt' | 'sfuel' | 'xion';
|
|
4494
|
-
};
|
|
4495
|
-
query?: never;
|
|
4496
|
-
url: '/unstable/wallets/{locator}/{currency}/balance';
|
|
4497
|
-
};
|
|
4498
|
-
type WalletBalanceControllerGetBalanceForLocatorAndCurrency2Responses = {
|
|
4499
|
-
200: unknown;
|
|
4500
|
-
};
|
|
4501
5357
|
type WalletsV1ControllerSubmitMeApprovals4Data = {
|
|
4502
5358
|
body: SubmitApprovalDto;
|
|
4503
5359
|
headers: {
|
|
@@ -4647,6 +5503,7 @@ type WalletsV1ControllerGetMeDelegatedSigner4Data = {
|
|
|
4647
5503
|
path: {
|
|
4648
5504
|
walletType: string;
|
|
4649
5505
|
/**
|
|
5506
|
+
* Signer Locator
|
|
4650
5507
|
* A signer locator that can be either a of format '<signerAddress>' for keypair type signers or '<signerType>:<signerIdentifier>'
|
|
4651
5508
|
*/
|
|
4652
5509
|
signer: string;
|
|
@@ -4798,6 +5655,39 @@ type WalletsV1ControllerCreateMeSignatureRequest4Responses = {
|
|
|
4798
5655
|
201: WalletsV1Alpha2SignatureResponseDto;
|
|
4799
5656
|
};
|
|
4800
5657
|
type WalletsV1ControllerCreateMeSignatureRequest4Response = WalletsV1ControllerCreateMeSignatureRequest4Responses[keyof WalletsV1ControllerCreateMeSignatureRequest4Responses];
|
|
5658
|
+
type WalletsV1ControllerGetMeWalletActivity4Data = {
|
|
5659
|
+
body?: never;
|
|
5660
|
+
headers: {
|
|
5661
|
+
/**
|
|
5662
|
+
* API key required for authentication
|
|
5663
|
+
*/
|
|
5664
|
+
'X-API-KEY': string;
|
|
5665
|
+
};
|
|
5666
|
+
path: {
|
|
5667
|
+
walletType: string;
|
|
5668
|
+
};
|
|
5669
|
+
query: {
|
|
5670
|
+
/**
|
|
5671
|
+
* The blockchain network to query. Either an EVM chain or Solana.
|
|
5672
|
+
*/
|
|
5673
|
+
chain: 'arbitrum-sepolia' | 'avalanche-fuji' | 'curtis' | 'barret-testnet' | 'base-goerli' | 'base-sepolia' | 'bsc-testnet' | 'chiliz-spicy-testnet' | 'coti-testnet' | 'ethereum-goerli' | 'ethereum-sepolia' | 'hedera-testnet' | 'hypersonic-testnet' | 'lightlink-pegasus' | 'mantle-sepolia' | 'optimism-goerli' | 'optimism-sepolia' | 'polygon-amoy' | 'polygon-mumbai' | 'crossmint-private-testnet-ethereum' | 'crossmint-private-testnet-polygon' | 'rari-testnet' | 'scroll-sepolia' | 'sei-atlantic-2-testnet' | 'shape-sepolia' | 'skale-nebula-testnet' | 'soneium-minato-testnet' | 'space-testnet' | 'story-testnet' | 'verify-testnet' | 'viction-testnet' | 'xai-sepolia-testnet' | 'zkatana' | 'zkyoto' | 'zora-goerli' | 'zora-sepolia' | 'mode-sepolia' | 'u2u-nebulas' | 'zenchain-testnet' | 'abstract-testnet' | 'world-chain-sepolia' | 'ethereum' | 'polygon' | 'bsc' | 'optimism' | 'arbitrum' | 'base' | 'zora' | 'arbitrumnova' | 'astar-zkevm' | 'apechain' | 'apex' | 'boss' | 'hedera' | 'coti' | 'lightlink' | 'mantle' | 'skale-nebula' | 'sei-pacific-1' | 'chiliz' | 'avalanche' | 'xai' | 'shape' | 'rari' | 'scroll' | 'viction' | 'mode' | 'space' | 'soneium' | 'story' | 'u2u-solaris' | 'abstract' | 'world-chain' | 'solana';
|
|
5674
|
+
};
|
|
5675
|
+
url: '/2022-06-09/wallets/me{walletType}/activity';
|
|
5676
|
+
};
|
|
5677
|
+
type WalletsV1ControllerGetMeWalletActivity4Errors = {
|
|
5678
|
+
/**
|
|
5679
|
+
* Returns an error if a wallet with the specified type not found for the authenticated user
|
|
5680
|
+
*/
|
|
5681
|
+
404: WalletV1Alpha2ErrorDto;
|
|
5682
|
+
};
|
|
5683
|
+
type WalletsV1ControllerGetMeWalletActivity4Error = WalletsV1ControllerGetMeWalletActivity4Errors[keyof WalletsV1ControllerGetMeWalletActivity4Errors];
|
|
5684
|
+
type WalletsV1ControllerGetMeWalletActivity4Responses = {
|
|
5685
|
+
/**
|
|
5686
|
+
* The wallet activity has been successfully retrieved.
|
|
5687
|
+
*/
|
|
5688
|
+
200: WalletsV1Alpha2ActivityResponseDto;
|
|
5689
|
+
};
|
|
5690
|
+
type WalletsV1ControllerGetMeWalletActivity4Response = WalletsV1ControllerGetMeWalletActivity4Responses[keyof WalletsV1ControllerGetMeWalletActivity4Responses];
|
|
4801
5691
|
type WalletsV1ControllerGetMeWallet4Data = {
|
|
4802
5692
|
body?: never;
|
|
4803
5693
|
headers: {
|
|
@@ -5040,6 +5930,7 @@ type WalletsV1ControllerGetDelegatedSigner4Data = {
|
|
|
5040
5930
|
*/
|
|
5041
5931
|
walletLocator: string;
|
|
5042
5932
|
/**
|
|
5933
|
+
* Signer Locator
|
|
5043
5934
|
* A signer locator that can be either a of format '<signerAddress>' for keypair type signers or '<signerType>:<signerIdentifier>'
|
|
5044
5935
|
*/
|
|
5045
5936
|
signer: string;
|
|
@@ -5293,7 +6184,12 @@ type WalletsV1ControllerGetWalletActivity4Data = {
|
|
|
5293
6184
|
*/
|
|
5294
6185
|
walletLocator: string;
|
|
5295
6186
|
};
|
|
5296
|
-
query
|
|
6187
|
+
query: {
|
|
6188
|
+
/**
|
|
6189
|
+
* The blockchain network to query. Either an EVM chain or Solana.
|
|
6190
|
+
*/
|
|
6191
|
+
chain: 'arbitrum-sepolia' | 'avalanche-fuji' | 'curtis' | 'barret-testnet' | 'base-goerli' | 'base-sepolia' | 'bsc-testnet' | 'chiliz-spicy-testnet' | 'coti-testnet' | 'ethereum-goerli' | 'ethereum-sepolia' | 'hedera-testnet' | 'hypersonic-testnet' | 'lightlink-pegasus' | 'mantle-sepolia' | 'optimism-goerli' | 'optimism-sepolia' | 'polygon-amoy' | 'polygon-mumbai' | 'crossmint-private-testnet-ethereum' | 'crossmint-private-testnet-polygon' | 'rari-testnet' | 'scroll-sepolia' | 'sei-atlantic-2-testnet' | 'shape-sepolia' | 'skale-nebula-testnet' | 'soneium-minato-testnet' | 'space-testnet' | 'story-testnet' | 'verify-testnet' | 'viction-testnet' | 'xai-sepolia-testnet' | 'zkatana' | 'zkyoto' | 'zora-goerli' | 'zora-sepolia' | 'mode-sepolia' | 'u2u-nebulas' | 'zenchain-testnet' | 'abstract-testnet' | 'world-chain-sepolia' | 'ethereum' | 'polygon' | 'bsc' | 'optimism' | 'arbitrum' | 'base' | 'zora' | 'arbitrumnova' | 'astar-zkevm' | 'apechain' | 'apex' | 'boss' | 'hedera' | 'coti' | 'lightlink' | 'mantle' | 'skale-nebula' | 'sei-pacific-1' | 'chiliz' | 'avalanche' | 'xai' | 'shape' | 'rari' | 'scroll' | 'viction' | 'mode' | 'space' | 'soneium' | 'story' | 'u2u-solaris' | 'abstract' | 'world-chain' | 'solana';
|
|
6192
|
+
};
|
|
5297
6193
|
url: '/2022-06-09/wallets/{walletLocator}/activity';
|
|
5298
6194
|
};
|
|
5299
6195
|
type WalletsV1ControllerGetWalletActivity4Errors = {
|
|
@@ -5382,4 +6278,4 @@ type ClientOptions = {
|
|
|
5382
6278
|
baseUrl: 'https://staging.crossmint.com/api' | 'https://www.crossmint.com/api' | (string & {});
|
|
5383
6279
|
};
|
|
5384
6280
|
|
|
5385
|
-
export type { BalanceControllerFundWallet2Data, BalanceControllerFundWallet2Error, BalanceControllerFundWallet2Errors, BalanceControllerFundWallet2Response, BalanceControllerFundWallet2Responses, BalanceControllerGetBalanceForLocator2Data, BalanceControllerGetBalanceForLocator2Error, BalanceControllerGetBalanceForLocator2Errors, BalanceControllerGetBalanceForLocator2Response, BalanceControllerGetBalanceForLocator2Responses, BalanceUnstableControllerGetBalanceForLocator2Data, BalanceUnstableControllerGetBalanceForLocator2Error, BalanceUnstableControllerGetBalanceForLocator2Errors, BalanceUnstableControllerGetBalanceForLocator2Response, BalanceUnstableControllerGetBalanceForLocator2Responses, ClientOptions, CreateSignatureRequestDto, CreateSignerInputDto, CreateTransactionDto, CreateWalletDto, DelegatedSignerDto, FetchContentFromWalletData, FetchContentFromWalletError, FetchContentFromWalletErrors, FetchContentFromWalletResponse, FetchContentFromWalletResponses, FundWalletAmountDto, Nftevm, Nftsol, SendTokenDto, SubmitApprovalDto, WalletBalanceControllerGetBalanceForLocatorAndCurrency2Data, WalletBalanceControllerGetBalanceForLocatorAndCurrency2Responses, WalletBalanceResponseDto, WalletBalanceUnstableResponseDto, WalletV1Alpha2ErrorDto, WalletV1Alpha2ResponseDto, WalletV1Alpha2TransactionErrorDto, WalletsSendTokenControllerSendToken2Data, WalletsSendTokenControllerSendToken2Response, WalletsSendTokenControllerSendToken2Responses, WalletsV1Alpha2ActivityResponseDto, WalletsV1Alpha2MultipleSignatureResponseDto, WalletsV1Alpha2SignatureResponseDto, WalletsV1Alpha2TransactionResponseDto, WalletsV1Alpha2TransactionsResponseDto, WalletsV1ControllerCreateDelegatedSigner4Data, WalletsV1ControllerCreateDelegatedSigner4Error, WalletsV1ControllerCreateDelegatedSigner4Errors, WalletsV1ControllerCreateDelegatedSigner4Response, WalletsV1ControllerCreateDelegatedSigner4Responses, WalletsV1ControllerCreateDelegatedSigner5Data, WalletsV1ControllerCreateDelegatedSigner5Error, WalletsV1ControllerCreateDelegatedSigner5Errors, WalletsV1ControllerCreateDelegatedSigner5Response, WalletsV1ControllerCreateDelegatedSigner5Responses, WalletsV1ControllerCreateMeDelegatedSigner4Data, WalletsV1ControllerCreateMeDelegatedSigner4Error, WalletsV1ControllerCreateMeDelegatedSigner4Errors, WalletsV1ControllerCreateMeDelegatedSigner4Response, WalletsV1ControllerCreateMeDelegatedSigner4Responses, WalletsV1ControllerCreateMeDelegatedSigner5Data, WalletsV1ControllerCreateMeDelegatedSigner5Error, WalletsV1ControllerCreateMeDelegatedSigner5Errors, WalletsV1ControllerCreateMeDelegatedSigner5Response, WalletsV1ControllerCreateMeDelegatedSigner5Responses, WalletsV1ControllerCreateMeSignatureRequest4Data, WalletsV1ControllerCreateMeSignatureRequest4Error, WalletsV1ControllerCreateMeSignatureRequest4Errors, WalletsV1ControllerCreateMeSignatureRequest4Response, WalletsV1ControllerCreateMeSignatureRequest4Responses, WalletsV1ControllerCreateMeSignatureRequest5Data, WalletsV1ControllerCreateMeSignatureRequest5Error, WalletsV1ControllerCreateMeSignatureRequest5Errors, WalletsV1ControllerCreateMeSignatureRequest5Response, WalletsV1ControllerCreateMeSignatureRequest5Responses, WalletsV1ControllerCreateMeTransaction4Data, WalletsV1ControllerCreateMeTransaction4Error, WalletsV1ControllerCreateMeTransaction4Errors, WalletsV1ControllerCreateMeTransaction4Response, WalletsV1ControllerCreateMeTransaction4Responses, WalletsV1ControllerCreateMeTransaction5Data, WalletsV1ControllerCreateMeTransaction5Error, WalletsV1ControllerCreateMeTransaction5Errors, WalletsV1ControllerCreateMeTransaction5Response, WalletsV1ControllerCreateMeTransaction5Responses, WalletsV1ControllerCreateMeWallet4Data, WalletsV1ControllerCreateMeWallet4Response, WalletsV1ControllerCreateMeWallet4Responses, WalletsV1ControllerCreateMeWallet5Data, WalletsV1ControllerCreateMeWallet5Response, WalletsV1ControllerCreateMeWallet5Responses, WalletsV1ControllerCreateSignatureRequest4Data, WalletsV1ControllerCreateSignatureRequest4Error, WalletsV1ControllerCreateSignatureRequest4Errors, WalletsV1ControllerCreateSignatureRequest4Response, WalletsV1ControllerCreateSignatureRequest4Responses, WalletsV1ControllerCreateSignatureRequest5Data, WalletsV1ControllerCreateSignatureRequest5Error, WalletsV1ControllerCreateSignatureRequest5Errors, WalletsV1ControllerCreateSignatureRequest5Response, WalletsV1ControllerCreateSignatureRequest5Responses, WalletsV1ControllerCreateTransaction4Data, WalletsV1ControllerCreateTransaction4Error, WalletsV1ControllerCreateTransaction4Errors, WalletsV1ControllerCreateTransaction4Response, WalletsV1ControllerCreateTransaction4Responses, WalletsV1ControllerCreateTransaction5Data, WalletsV1ControllerCreateTransaction5Error, WalletsV1ControllerCreateTransaction5Errors, WalletsV1ControllerCreateTransaction5Response, WalletsV1ControllerCreateTransaction5Responses, WalletsV1ControllerCreateWallet4Data, WalletsV1ControllerCreateWallet4Error, WalletsV1ControllerCreateWallet4Errors, WalletsV1ControllerCreateWallet4Response, WalletsV1ControllerCreateWallet4Responses, WalletsV1ControllerCreateWallet5Data, WalletsV1ControllerCreateWallet5Error, WalletsV1ControllerCreateWallet5Errors, WalletsV1ControllerCreateWallet5Response, WalletsV1ControllerCreateWallet5Responses, WalletsV1ControllerGetAllSignatures4Data, WalletsV1ControllerGetAllSignatures4Error, WalletsV1ControllerGetAllSignatures4Errors, WalletsV1ControllerGetAllSignatures4Response, WalletsV1ControllerGetAllSignatures4Responses, WalletsV1ControllerGetAllSignatures5Data, WalletsV1ControllerGetAllSignatures5Error, WalletsV1ControllerGetAllSignatures5Errors, WalletsV1ControllerGetAllSignatures5Response, WalletsV1ControllerGetAllSignatures5Responses, WalletsV1ControllerGetDelegatedSigner4Data, WalletsV1ControllerGetDelegatedSigner4Error, WalletsV1ControllerGetDelegatedSigner4Errors, WalletsV1ControllerGetDelegatedSigner4Response, WalletsV1ControllerGetDelegatedSigner4Responses, WalletsV1ControllerGetDelegatedSigner5Data, WalletsV1ControllerGetDelegatedSigner5Error, WalletsV1ControllerGetDelegatedSigner5Errors, WalletsV1ControllerGetDelegatedSigner5Response, WalletsV1ControllerGetDelegatedSigner5Responses, WalletsV1ControllerGetMeDelegatedSigner4Data, WalletsV1ControllerGetMeDelegatedSigner4Error, WalletsV1ControllerGetMeDelegatedSigner4Errors, WalletsV1ControllerGetMeDelegatedSigner4Response, WalletsV1ControllerGetMeDelegatedSigner4Responses, WalletsV1ControllerGetMeDelegatedSigner5Data, WalletsV1ControllerGetMeDelegatedSigner5Error, WalletsV1ControllerGetMeDelegatedSigner5Errors, WalletsV1ControllerGetMeDelegatedSigner5Response, WalletsV1ControllerGetMeDelegatedSigner5Responses, WalletsV1ControllerGetMeSignature4Data, WalletsV1ControllerGetMeSignature4Error, WalletsV1ControllerGetMeSignature4Errors, WalletsV1ControllerGetMeSignature4Response, WalletsV1ControllerGetMeSignature4Responses, WalletsV1ControllerGetMeSignature5Data, WalletsV1ControllerGetMeSignature5Error, WalletsV1ControllerGetMeSignature5Errors, WalletsV1ControllerGetMeSignature5Response, WalletsV1ControllerGetMeSignature5Responses, WalletsV1ControllerGetMeTransaction4Data, WalletsV1ControllerGetMeTransaction4Error, WalletsV1ControllerGetMeTransaction4Errors, WalletsV1ControllerGetMeTransaction4Response, WalletsV1ControllerGetMeTransaction4Responses, WalletsV1ControllerGetMeTransaction5Data, WalletsV1ControllerGetMeTransaction5Error, WalletsV1ControllerGetMeTransaction5Errors, WalletsV1ControllerGetMeTransaction5Response, WalletsV1ControllerGetMeTransaction5Responses, WalletsV1ControllerGetMeTransactionsWithoutChain4Data, WalletsV1ControllerGetMeTransactionsWithoutChain4Error, WalletsV1ControllerGetMeTransactionsWithoutChain4Errors, WalletsV1ControllerGetMeTransactionsWithoutChain4Response, WalletsV1ControllerGetMeTransactionsWithoutChain4Responses, WalletsV1ControllerGetMeTransactionsWithoutChain5Data, WalletsV1ControllerGetMeTransactionsWithoutChain5Error, WalletsV1ControllerGetMeTransactionsWithoutChain5Errors, WalletsV1ControllerGetMeTransactionsWithoutChain5Response, WalletsV1ControllerGetMeTransactionsWithoutChain5Responses, WalletsV1ControllerGetMeWallet4Data, WalletsV1ControllerGetMeWallet4Response, WalletsV1ControllerGetMeWallet4Responses, WalletsV1ControllerGetMeWallet5Data, WalletsV1ControllerGetMeWallet5Response, WalletsV1ControllerGetMeWallet5Responses, WalletsV1ControllerGetSignature4Data, WalletsV1ControllerGetSignature4Error, WalletsV1ControllerGetSignature4Errors, WalletsV1ControllerGetSignature4Response, WalletsV1ControllerGetSignature4Responses, WalletsV1ControllerGetSignature5Data, WalletsV1ControllerGetSignature5Error, WalletsV1ControllerGetSignature5Errors, WalletsV1ControllerGetSignature5Response, WalletsV1ControllerGetSignature5Responses, WalletsV1ControllerGetTransaction4Data, WalletsV1ControllerGetTransaction4Error, WalletsV1ControllerGetTransaction4Errors, WalletsV1ControllerGetTransaction4Response, WalletsV1ControllerGetTransaction4Responses, WalletsV1ControllerGetTransaction5Data, WalletsV1ControllerGetTransaction5Error, WalletsV1ControllerGetTransaction5Errors, WalletsV1ControllerGetTransaction5Response, WalletsV1ControllerGetTransaction5Responses, WalletsV1ControllerGetTransactionsWithoutChain4Data, WalletsV1ControllerGetTransactionsWithoutChain4Error, WalletsV1ControllerGetTransactionsWithoutChain4Errors, WalletsV1ControllerGetTransactionsWithoutChain4Response, WalletsV1ControllerGetTransactionsWithoutChain4Responses, WalletsV1ControllerGetTransactionsWithoutChain5Data, WalletsV1ControllerGetTransactionsWithoutChain5Error, WalletsV1ControllerGetTransactionsWithoutChain5Errors, WalletsV1ControllerGetTransactionsWithoutChain5Response, WalletsV1ControllerGetTransactionsWithoutChain5Responses, WalletsV1ControllerGetWalletActivity4Data, WalletsV1ControllerGetWalletActivity4Error, WalletsV1ControllerGetWalletActivity4Errors, WalletsV1ControllerGetWalletActivity4Response, WalletsV1ControllerGetWalletActivity4Responses, WalletsV1ControllerGetWalletActivity5Data, WalletsV1ControllerGetWalletActivity5Error, WalletsV1ControllerGetWalletActivity5Errors, WalletsV1ControllerGetWalletActivity5Response, WalletsV1ControllerGetWalletActivity5Responses, WalletsV1ControllerGetWalletByLocator4Data, WalletsV1ControllerGetWalletByLocator4Error, WalletsV1ControllerGetWalletByLocator4Errors, WalletsV1ControllerGetWalletByLocator4Response, WalletsV1ControllerGetWalletByLocator4Responses, WalletsV1ControllerGetWalletByLocator5Data, WalletsV1ControllerGetWalletByLocator5Error, WalletsV1ControllerGetWalletByLocator5Errors, WalletsV1ControllerGetWalletByLocator5Response, WalletsV1ControllerGetWalletByLocator5Responses, WalletsV1ControllerSubmitApprovals4Data, WalletsV1ControllerSubmitApprovals4Error, WalletsV1ControllerSubmitApprovals4Errors, WalletsV1ControllerSubmitApprovals4Response, WalletsV1ControllerSubmitApprovals4Responses, WalletsV1ControllerSubmitApprovals5Data, WalletsV1ControllerSubmitApprovals5Error, WalletsV1ControllerSubmitApprovals5Errors, WalletsV1ControllerSubmitApprovals5Response, WalletsV1ControllerSubmitApprovals5Responses, WalletsV1ControllerSubmitMeApprovals4Data, WalletsV1ControllerSubmitMeApprovals4Error, WalletsV1ControllerSubmitMeApprovals4Errors, WalletsV1ControllerSubmitMeApprovals4Response, WalletsV1ControllerSubmitMeApprovals4Responses, WalletsV1ControllerSubmitMeApprovals5Data, WalletsV1ControllerSubmitMeApprovals5Error, WalletsV1ControllerSubmitMeApprovals5Errors, WalletsV1ControllerSubmitMeApprovals5Response, WalletsV1ControllerSubmitMeApprovals5Responses, WalletsV1ControllerSubmitMeSignatureApprovals4Data, WalletsV1ControllerSubmitMeSignatureApprovals4Error, WalletsV1ControllerSubmitMeSignatureApprovals4Errors, WalletsV1ControllerSubmitMeSignatureApprovals4Response, WalletsV1ControllerSubmitMeSignatureApprovals4Responses, WalletsV1ControllerSubmitMeSignatureApprovals5Data, WalletsV1ControllerSubmitMeSignatureApprovals5Error, WalletsV1ControllerSubmitMeSignatureApprovals5Errors, WalletsV1ControllerSubmitMeSignatureApprovals5Response, WalletsV1ControllerSubmitMeSignatureApprovals5Responses, WalletsV1ControllerSubmitSignatureApprovals4Data, WalletsV1ControllerSubmitSignatureApprovals4Error, WalletsV1ControllerSubmitSignatureApprovals4Errors, WalletsV1ControllerSubmitSignatureApprovals4Response, WalletsV1ControllerSubmitSignatureApprovals4Responses, WalletsV1ControllerSubmitSignatureApprovals5Data, WalletsV1ControllerSubmitSignatureApprovals5Error, WalletsV1ControllerSubmitSignatureApprovals5Errors, WalletsV1ControllerSubmitSignatureApprovals5Response, WalletsV1ControllerSubmitSignatureApprovals5Responses, _Error };
|
|
6281
|
+
export type { BalanceControllerFundWallet2Data, BalanceControllerFundWallet2Error, BalanceControllerFundWallet2Errors, BalanceControllerFundWallet2Response, BalanceControllerFundWallet2Responses, BalanceControllerGetBalanceForLocator2Data, BalanceControllerGetBalanceForLocator2Error, BalanceControllerGetBalanceForLocator2Errors, BalanceControllerGetBalanceForLocator2Response, BalanceControllerGetBalanceForLocator2Responses, BalanceUnstableControllerGetBalanceForLocator2Data, BalanceUnstableControllerGetBalanceForLocator2Error, BalanceUnstableControllerGetBalanceForLocator2Errors, BalanceUnstableControllerGetBalanceForLocator2Response, BalanceUnstableControllerGetBalanceForLocator2Responses, ClientOptions, CreateSignatureRequestDto, CreateSignerInputDto, CreateTransactionDto, CreateWalletDto, DelegatedSignerDto, FetchContentFromWalletData, FetchContentFromWalletError, FetchContentFromWalletErrors, FetchContentFromWalletResponse, FetchContentFromWalletResponses, FundWalletAmountDto, Nftevm, Nftsol, SendTokenDto, SubmitApprovalDto, WalletBalanceResponseDto, WalletBalanceUnstableResponseDto, WalletV1Alpha2ErrorDto, WalletV1Alpha2ResponseDto, WalletV1Alpha2TransactionErrorDto, WalletsSendTokenControllerSendMeToken2Data, WalletsSendTokenControllerSendMeToken2Response, WalletsSendTokenControllerSendMeToken2Responses, WalletsSendTokenControllerSendToken2Data, WalletsSendTokenControllerSendToken2Response, WalletsSendTokenControllerSendToken2Responses, WalletsV1Alpha2ActivityResponseDto, WalletsV1Alpha2MultipleSignatureResponseDto, WalletsV1Alpha2SignatureResponseDto, WalletsV1Alpha2TransactionResponseDto, WalletsV1Alpha2TransactionResponseWithSendParamsDto, WalletsV1Alpha2TransactionsResponseDto, WalletsV1ControllerCreateDelegatedSigner4Data, WalletsV1ControllerCreateDelegatedSigner4Error, WalletsV1ControllerCreateDelegatedSigner4Errors, WalletsV1ControllerCreateDelegatedSigner4Response, WalletsV1ControllerCreateDelegatedSigner4Responses, WalletsV1ControllerCreateDelegatedSigner5Data, WalletsV1ControllerCreateDelegatedSigner5Error, WalletsV1ControllerCreateDelegatedSigner5Errors, WalletsV1ControllerCreateDelegatedSigner5Response, WalletsV1ControllerCreateDelegatedSigner5Responses, WalletsV1ControllerCreateMeDelegatedSigner4Data, WalletsV1ControllerCreateMeDelegatedSigner4Error, WalletsV1ControllerCreateMeDelegatedSigner4Errors, WalletsV1ControllerCreateMeDelegatedSigner4Response, WalletsV1ControllerCreateMeDelegatedSigner4Responses, WalletsV1ControllerCreateMeDelegatedSigner5Data, WalletsV1ControllerCreateMeDelegatedSigner5Error, WalletsV1ControllerCreateMeDelegatedSigner5Errors, WalletsV1ControllerCreateMeDelegatedSigner5Response, WalletsV1ControllerCreateMeDelegatedSigner5Responses, WalletsV1ControllerCreateMeSignatureRequest4Data, WalletsV1ControllerCreateMeSignatureRequest4Error, WalletsV1ControllerCreateMeSignatureRequest4Errors, WalletsV1ControllerCreateMeSignatureRequest4Response, WalletsV1ControllerCreateMeSignatureRequest4Responses, WalletsV1ControllerCreateMeSignatureRequest5Data, WalletsV1ControllerCreateMeSignatureRequest5Error, WalletsV1ControllerCreateMeSignatureRequest5Errors, WalletsV1ControllerCreateMeSignatureRequest5Response, WalletsV1ControllerCreateMeSignatureRequest5Responses, WalletsV1ControllerCreateMeTransaction4Data, WalletsV1ControllerCreateMeTransaction4Error, WalletsV1ControllerCreateMeTransaction4Errors, WalletsV1ControllerCreateMeTransaction4Response, WalletsV1ControllerCreateMeTransaction4Responses, WalletsV1ControllerCreateMeTransaction5Data, WalletsV1ControllerCreateMeTransaction5Error, WalletsV1ControllerCreateMeTransaction5Errors, WalletsV1ControllerCreateMeTransaction5Response, WalletsV1ControllerCreateMeTransaction5Responses, WalletsV1ControllerCreateMeWallet4Data, WalletsV1ControllerCreateMeWallet4Response, WalletsV1ControllerCreateMeWallet4Responses, WalletsV1ControllerCreateMeWallet5Data, WalletsV1ControllerCreateMeWallet5Response, WalletsV1ControllerCreateMeWallet5Responses, WalletsV1ControllerCreateSignatureRequest4Data, WalletsV1ControllerCreateSignatureRequest4Error, WalletsV1ControllerCreateSignatureRequest4Errors, WalletsV1ControllerCreateSignatureRequest4Response, WalletsV1ControllerCreateSignatureRequest4Responses, WalletsV1ControllerCreateSignatureRequest5Data, WalletsV1ControllerCreateSignatureRequest5Error, WalletsV1ControllerCreateSignatureRequest5Errors, WalletsV1ControllerCreateSignatureRequest5Response, WalletsV1ControllerCreateSignatureRequest5Responses, WalletsV1ControllerCreateTransaction4Data, WalletsV1ControllerCreateTransaction4Error, WalletsV1ControllerCreateTransaction4Errors, WalletsV1ControllerCreateTransaction4Response, WalletsV1ControllerCreateTransaction4Responses, WalletsV1ControllerCreateTransaction5Data, WalletsV1ControllerCreateTransaction5Error, WalletsV1ControllerCreateTransaction5Errors, WalletsV1ControllerCreateTransaction5Response, WalletsV1ControllerCreateTransaction5Responses, WalletsV1ControllerCreateWallet4Data, WalletsV1ControllerCreateWallet4Error, WalletsV1ControllerCreateWallet4Errors, WalletsV1ControllerCreateWallet4Response, WalletsV1ControllerCreateWallet4Responses, WalletsV1ControllerCreateWallet5Data, WalletsV1ControllerCreateWallet5Error, WalletsV1ControllerCreateWallet5Errors, WalletsV1ControllerCreateWallet5Response, WalletsV1ControllerCreateWallet5Responses, WalletsV1ControllerGetAllSignatures4Data, WalletsV1ControllerGetAllSignatures4Error, WalletsV1ControllerGetAllSignatures4Errors, WalletsV1ControllerGetAllSignatures4Response, WalletsV1ControllerGetAllSignatures4Responses, WalletsV1ControllerGetAllSignatures5Data, WalletsV1ControllerGetAllSignatures5Error, WalletsV1ControllerGetAllSignatures5Errors, WalletsV1ControllerGetAllSignatures5Response, WalletsV1ControllerGetAllSignatures5Responses, WalletsV1ControllerGetDelegatedSigner4Data, WalletsV1ControllerGetDelegatedSigner4Error, WalletsV1ControllerGetDelegatedSigner4Errors, WalletsV1ControllerGetDelegatedSigner4Response, WalletsV1ControllerGetDelegatedSigner4Responses, WalletsV1ControllerGetDelegatedSigner5Data, WalletsV1ControllerGetDelegatedSigner5Error, WalletsV1ControllerGetDelegatedSigner5Errors, WalletsV1ControllerGetDelegatedSigner5Response, WalletsV1ControllerGetDelegatedSigner5Responses, WalletsV1ControllerGetMeDelegatedSigner4Data, WalletsV1ControllerGetMeDelegatedSigner4Error, WalletsV1ControllerGetMeDelegatedSigner4Errors, WalletsV1ControllerGetMeDelegatedSigner4Response, WalletsV1ControllerGetMeDelegatedSigner4Responses, WalletsV1ControllerGetMeDelegatedSigner5Data, WalletsV1ControllerGetMeDelegatedSigner5Error, WalletsV1ControllerGetMeDelegatedSigner5Errors, WalletsV1ControllerGetMeDelegatedSigner5Response, WalletsV1ControllerGetMeDelegatedSigner5Responses, WalletsV1ControllerGetMeSignature4Data, WalletsV1ControllerGetMeSignature4Error, WalletsV1ControllerGetMeSignature4Errors, WalletsV1ControllerGetMeSignature4Response, WalletsV1ControllerGetMeSignature4Responses, WalletsV1ControllerGetMeSignature5Data, WalletsV1ControllerGetMeSignature5Error, WalletsV1ControllerGetMeSignature5Errors, WalletsV1ControllerGetMeSignature5Response, WalletsV1ControllerGetMeSignature5Responses, WalletsV1ControllerGetMeTransaction4Data, WalletsV1ControllerGetMeTransaction4Error, WalletsV1ControllerGetMeTransaction4Errors, WalletsV1ControllerGetMeTransaction4Response, WalletsV1ControllerGetMeTransaction4Responses, WalletsV1ControllerGetMeTransaction5Data, WalletsV1ControllerGetMeTransaction5Error, WalletsV1ControllerGetMeTransaction5Errors, WalletsV1ControllerGetMeTransaction5Response, WalletsV1ControllerGetMeTransaction5Responses, WalletsV1ControllerGetMeTransactionsWithoutChain4Data, WalletsV1ControllerGetMeTransactionsWithoutChain4Error, WalletsV1ControllerGetMeTransactionsWithoutChain4Errors, WalletsV1ControllerGetMeTransactionsWithoutChain4Response, WalletsV1ControllerGetMeTransactionsWithoutChain4Responses, WalletsV1ControllerGetMeTransactionsWithoutChain5Data, WalletsV1ControllerGetMeTransactionsWithoutChain5Error, WalletsV1ControllerGetMeTransactionsWithoutChain5Errors, WalletsV1ControllerGetMeTransactionsWithoutChain5Response, WalletsV1ControllerGetMeTransactionsWithoutChain5Responses, WalletsV1ControllerGetMeWallet4Data, WalletsV1ControllerGetMeWallet4Response, WalletsV1ControllerGetMeWallet4Responses, WalletsV1ControllerGetMeWallet5Data, WalletsV1ControllerGetMeWallet5Response, WalletsV1ControllerGetMeWallet5Responses, WalletsV1ControllerGetMeWalletActivity4Data, WalletsV1ControllerGetMeWalletActivity4Error, WalletsV1ControllerGetMeWalletActivity4Errors, WalletsV1ControllerGetMeWalletActivity4Response, WalletsV1ControllerGetMeWalletActivity4Responses, WalletsV1ControllerGetMeWalletActivity5Data, WalletsV1ControllerGetMeWalletActivity5Error, WalletsV1ControllerGetMeWalletActivity5Errors, WalletsV1ControllerGetMeWalletActivity5Response, WalletsV1ControllerGetMeWalletActivity5Responses, WalletsV1ControllerGetSignature4Data, WalletsV1ControllerGetSignature4Error, WalletsV1ControllerGetSignature4Errors, WalletsV1ControllerGetSignature4Response, WalletsV1ControllerGetSignature4Responses, WalletsV1ControllerGetSignature5Data, WalletsV1ControllerGetSignature5Error, WalletsV1ControllerGetSignature5Errors, WalletsV1ControllerGetSignature5Response, WalletsV1ControllerGetSignature5Responses, WalletsV1ControllerGetTransaction4Data, WalletsV1ControllerGetTransaction4Error, WalletsV1ControllerGetTransaction4Errors, WalletsV1ControllerGetTransaction4Response, WalletsV1ControllerGetTransaction4Responses, WalletsV1ControllerGetTransaction5Data, WalletsV1ControllerGetTransaction5Error, WalletsV1ControllerGetTransaction5Errors, WalletsV1ControllerGetTransaction5Response, WalletsV1ControllerGetTransaction5Responses, WalletsV1ControllerGetTransactionsWithoutChain4Data, WalletsV1ControllerGetTransactionsWithoutChain4Error, WalletsV1ControllerGetTransactionsWithoutChain4Errors, WalletsV1ControllerGetTransactionsWithoutChain4Response, WalletsV1ControllerGetTransactionsWithoutChain4Responses, WalletsV1ControllerGetTransactionsWithoutChain5Data, WalletsV1ControllerGetTransactionsWithoutChain5Error, WalletsV1ControllerGetTransactionsWithoutChain5Errors, WalletsV1ControllerGetTransactionsWithoutChain5Response, WalletsV1ControllerGetTransactionsWithoutChain5Responses, WalletsV1ControllerGetWalletActivity4Data, WalletsV1ControllerGetWalletActivity4Error, WalletsV1ControllerGetWalletActivity4Errors, WalletsV1ControllerGetWalletActivity4Response, WalletsV1ControllerGetWalletActivity4Responses, WalletsV1ControllerGetWalletActivity5Data, WalletsV1ControllerGetWalletActivity5Error, WalletsV1ControllerGetWalletActivity5Errors, WalletsV1ControllerGetWalletActivity5Response, WalletsV1ControllerGetWalletActivity5Responses, WalletsV1ControllerGetWalletByLocator4Data, WalletsV1ControllerGetWalletByLocator4Error, WalletsV1ControllerGetWalletByLocator4Errors, WalletsV1ControllerGetWalletByLocator4Response, WalletsV1ControllerGetWalletByLocator4Responses, WalletsV1ControllerGetWalletByLocator5Data, WalletsV1ControllerGetWalletByLocator5Error, WalletsV1ControllerGetWalletByLocator5Errors, WalletsV1ControllerGetWalletByLocator5Response, WalletsV1ControllerGetWalletByLocator5Responses, WalletsV1ControllerSubmitApprovals4Data, WalletsV1ControllerSubmitApprovals4Error, WalletsV1ControllerSubmitApprovals4Errors, WalletsV1ControllerSubmitApprovals4Response, WalletsV1ControllerSubmitApprovals4Responses, WalletsV1ControllerSubmitApprovals5Data, WalletsV1ControllerSubmitApprovals5Error, WalletsV1ControllerSubmitApprovals5Errors, WalletsV1ControllerSubmitApprovals5Response, WalletsV1ControllerSubmitApprovals5Responses, WalletsV1ControllerSubmitMeApprovals4Data, WalletsV1ControllerSubmitMeApprovals4Error, WalletsV1ControllerSubmitMeApprovals4Errors, WalletsV1ControllerSubmitMeApprovals4Response, WalletsV1ControllerSubmitMeApprovals4Responses, WalletsV1ControllerSubmitMeApprovals5Data, WalletsV1ControllerSubmitMeApprovals5Error, WalletsV1ControllerSubmitMeApprovals5Errors, WalletsV1ControllerSubmitMeApprovals5Response, WalletsV1ControllerSubmitMeApprovals5Responses, WalletsV1ControllerSubmitMeSignatureApprovals4Data, WalletsV1ControllerSubmitMeSignatureApprovals4Error, WalletsV1ControllerSubmitMeSignatureApprovals4Errors, WalletsV1ControllerSubmitMeSignatureApprovals4Response, WalletsV1ControllerSubmitMeSignatureApprovals4Responses, WalletsV1ControllerSubmitMeSignatureApprovals5Data, WalletsV1ControllerSubmitMeSignatureApprovals5Error, WalletsV1ControllerSubmitMeSignatureApprovals5Errors, WalletsV1ControllerSubmitMeSignatureApprovals5Response, WalletsV1ControllerSubmitMeSignatureApprovals5Responses, WalletsV1ControllerSubmitSignatureApprovals4Data, WalletsV1ControllerSubmitSignatureApprovals4Error, WalletsV1ControllerSubmitSignatureApprovals4Errors, WalletsV1ControllerSubmitSignatureApprovals4Response, WalletsV1ControllerSubmitSignatureApprovals4Responses, WalletsV1ControllerSubmitSignatureApprovals5Data, WalletsV1ControllerSubmitSignatureApprovals5Error, WalletsV1ControllerSubmitSignatureApprovals5Errors, WalletsV1ControllerSubmitSignatureApprovals5Response, WalletsV1ControllerSubmitSignatureApprovals5Responses, _Error };
|