@avalabs/glacier-sdk 2.8.0-canary.cfb38f5.0 → 2.8.0-canary.de70f7d.0
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/index.d.ts +411 -307
- package/dist/index.js +136 -110
- package/esm/generated/models/AddressActivityMetadata.d.ts +4 -1
- package/esm/generated/models/Asset.d.ts +3 -1
- package/esm/generated/models/AssetWithPriceInfo.d.ts +35 -0
- package/esm/generated/models/CChainSharedAssetBalance.d.ts +3 -1
- package/esm/generated/models/HistoricalReward.d.ts +2 -5
- package/esm/generated/models/ListValidatorDetailsResponse.d.ts +2 -1
- package/esm/generated/models/PChainBalance.d.ts +7 -7
- package/esm/generated/models/PChainSharedAsset.d.ts +24 -0
- package/esm/generated/models/PChainTransaction.d.ts +4 -4
- package/esm/generated/models/PChainTransactionType.d.ts +6 -5
- package/esm/generated/models/PChainTransactionType.js +6 -5
- package/esm/generated/models/PChainUtxo.d.ts +34 -14
- package/esm/generated/models/PendingReward.d.ts +2 -2
- package/esm/generated/models/PrimaryNetworkAssetCap.d.ts +6 -0
- package/esm/generated/models/PrimaryNetworkAssetCap.js +7 -0
- package/esm/generated/models/PrimaryNetworkAssetType.d.ts +6 -0
- package/esm/generated/models/PrimaryNetworkAssetType.js +7 -0
- package/esm/generated/models/PrimaryNetworkTxType.d.ts +6 -5
- package/esm/generated/models/PrimaryNetworkTxType.js +6 -5
- package/esm/generated/models/RemovedValidatorDetails.d.ts +19 -0
- package/esm/generated/models/RemovedValidatorDetails.js +8 -0
- package/esm/generated/models/Utxo.d.ts +28 -28
- package/esm/generated/models/UtxoCredential.d.ts +2 -2
- package/esm/generated/models/ValidationStatusType.d.ts +2 -1
- package/esm/generated/models/ValidationStatusType.js +1 -0
- package/esm/generated/models/WebhookResponse.d.ts +2 -0
- package/esm/generated/models/XChainAssetBalance.d.ts +3 -1
- package/esm/generated/models/XChainAssetDetails.d.ts +6 -3
- package/esm/generated/models/XChainSharedAssetBalance.d.ts +3 -1
- package/esm/generated/services/DefaultService.d.ts +5 -5
- package/esm/generated/services/DefaultService.js +2 -2
- package/esm/generated/services/EvmBalancesService.d.ts +25 -25
- package/esm/generated/services/EvmBalancesService.js +8 -8
- package/esm/generated/services/EvmBlocksService.d.ts +7 -7
- package/esm/generated/services/EvmBlocksService.js +4 -4
- package/esm/generated/services/EvmChainsService.d.ts +1 -1
- package/esm/generated/services/EvmContractsService.d.ts +2 -2
- package/esm/generated/services/EvmTransactionsService.d.ts +57 -57
- package/esm/generated/services/EvmTransactionsService.js +32 -32
- package/esm/generated/services/NfTsService.d.ts +8 -8
- package/esm/generated/services/NfTsService.js +4 -4
- package/esm/generated/services/PrimaryNetworkBlocksService.d.ts +10 -10
- package/esm/generated/services/PrimaryNetworkBlocksService.js +8 -8
- package/esm/generated/services/PrimaryNetworkRewardsService.d.ts +19 -14
- package/esm/generated/services/PrimaryNetworkRewardsService.js +8 -6
- package/esm/generated/services/PrimaryNetworkService.d.ts +41 -41
- package/esm/generated/services/PrimaryNetworkService.js +20 -20
- package/esm/generated/services/PrimaryNetworkTransactionsService.d.ts +16 -16
- package/esm/generated/services/PrimaryNetworkTransactionsService.js +8 -8
- package/esm/generated/services/PrimaryNetworkUtxOsService.d.ts +5 -5
- package/esm/generated/services/PrimaryNetworkUtxOsService.js +2 -2
- package/esm/generated/services/PrimaryNetworkVerticesService.d.ts +10 -10
- package/esm/generated/services/PrimaryNetworkVerticesService.js +6 -6
- package/esm/index.d.ts +4 -1
- package/esm/index.js +3 -0
- package/package.json +2 -2
- package/esm/generated/models/PChainAsset.d.ts +0 -6
|
@@ -29,15 +29,15 @@ declare class DefaultService {
|
|
|
29
29
|
* @returns ListWebhooksResponse
|
|
30
30
|
* @throws ApiError
|
|
31
31
|
*/
|
|
32
|
-
listWebhooks({
|
|
33
|
-
/**
|
|
34
|
-
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
35
|
-
*/
|
|
36
|
-
pageSize?: number;
|
|
32
|
+
listWebhooks({ pageToken, pageSize, status, }: {
|
|
37
33
|
/**
|
|
38
34
|
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
39
35
|
*/
|
|
40
36
|
pageToken?: string;
|
|
37
|
+
/**
|
|
38
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
39
|
+
*/
|
|
40
|
+
pageSize?: number;
|
|
41
41
|
/**
|
|
42
42
|
* Status of the webhook. Use "active" to return only active webhooks, "inactive" to return only inactive webhooks. Else if no status is provided, all configured webhooks will be returned.
|
|
43
43
|
*/
|
|
@@ -19,16 +19,16 @@ class DefaultService {
|
|
|
19
19
|
});
|
|
20
20
|
}
|
|
21
21
|
listWebhooks({
|
|
22
|
-
pageSize = 10,
|
|
23
22
|
pageToken,
|
|
23
|
+
pageSize = 10,
|
|
24
24
|
status
|
|
25
25
|
}) {
|
|
26
26
|
return this.httpRequest.request({
|
|
27
27
|
method: "GET",
|
|
28
28
|
url: "/v1/webhooks",
|
|
29
29
|
query: {
|
|
30
|
-
"pageSize": pageSize,
|
|
31
30
|
"pageToken": pageToken,
|
|
31
|
+
"pageSize": pageSize,
|
|
32
32
|
"status": status
|
|
33
33
|
}
|
|
34
34
|
});
|
|
@@ -20,7 +20,7 @@ declare class EvmBalancesService {
|
|
|
20
20
|
*/
|
|
21
21
|
getNativeBalance({ chainId, address, blockNumber, currency, }: {
|
|
22
22
|
/**
|
|
23
|
-
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
23
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
24
24
|
*/
|
|
25
25
|
chainId: string;
|
|
26
26
|
/**
|
|
@@ -46,9 +46,9 @@ declare class EvmBalancesService {
|
|
|
46
46
|
* @returns ListErc20BalancesResponse
|
|
47
47
|
* @throws ApiError
|
|
48
48
|
*/
|
|
49
|
-
listErc20Balances({ chainId, address, blockNumber,
|
|
49
|
+
listErc20Balances({ chainId, address, blockNumber, pageToken, pageSize, contractAddresses, currency, }: {
|
|
50
50
|
/**
|
|
51
|
-
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
51
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
52
52
|
*/
|
|
53
53
|
chainId: string;
|
|
54
54
|
/**
|
|
@@ -59,14 +59,14 @@ declare class EvmBalancesService {
|
|
|
59
59
|
* The block number, if not defined the block number will be the latest block.
|
|
60
60
|
*/
|
|
61
61
|
blockNumber?: string;
|
|
62
|
-
/**
|
|
63
|
-
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
64
|
-
*/
|
|
65
|
-
pageSize?: number;
|
|
66
62
|
/**
|
|
67
63
|
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
68
64
|
*/
|
|
69
65
|
pageToken?: string;
|
|
66
|
+
/**
|
|
67
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
68
|
+
*/
|
|
69
|
+
pageSize?: number;
|
|
70
70
|
/**
|
|
71
71
|
* A comma separated list of contract addresses to filter by.
|
|
72
72
|
*/
|
|
@@ -84,23 +84,23 @@ declare class EvmBalancesService {
|
|
|
84
84
|
* @returns ListErc721BalancesResponse
|
|
85
85
|
* @throws ApiError
|
|
86
86
|
*/
|
|
87
|
-
listErc721Balances({ chainId, address,
|
|
87
|
+
listErc721Balances({ chainId, address, pageToken, pageSize, contractAddress, }: {
|
|
88
88
|
/**
|
|
89
|
-
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
89
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
90
90
|
*/
|
|
91
91
|
chainId: string;
|
|
92
92
|
/**
|
|
93
93
|
* A wallet address.
|
|
94
94
|
*/
|
|
95
95
|
address: string;
|
|
96
|
-
/**
|
|
97
|
-
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
98
|
-
*/
|
|
99
|
-
pageSize?: number;
|
|
100
96
|
/**
|
|
101
97
|
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
102
98
|
*/
|
|
103
99
|
pageToken?: string;
|
|
100
|
+
/**
|
|
101
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
102
|
+
*/
|
|
103
|
+
pageSize?: number;
|
|
104
104
|
/**
|
|
105
105
|
* A contract addresses to filter by.
|
|
106
106
|
*/
|
|
@@ -116,9 +116,9 @@ declare class EvmBalancesService {
|
|
|
116
116
|
* @returns ListErc1155BalancesResponse
|
|
117
117
|
* @throws ApiError
|
|
118
118
|
*/
|
|
119
|
-
listErc1155Balances({ chainId, address, blockNumber,
|
|
119
|
+
listErc1155Balances({ chainId, address, blockNumber, pageToken, pageSize, contractAddress, }: {
|
|
120
120
|
/**
|
|
121
|
-
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
121
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
122
122
|
*/
|
|
123
123
|
chainId: string;
|
|
124
124
|
/**
|
|
@@ -129,14 +129,14 @@ declare class EvmBalancesService {
|
|
|
129
129
|
* The block number, if not defined the block number will be the latest block.
|
|
130
130
|
*/
|
|
131
131
|
blockNumber?: string;
|
|
132
|
-
/**
|
|
133
|
-
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
134
|
-
*/
|
|
135
|
-
pageSize?: number;
|
|
136
132
|
/**
|
|
137
133
|
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
138
134
|
*/
|
|
139
135
|
pageToken?: string;
|
|
136
|
+
/**
|
|
137
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
138
|
+
*/
|
|
139
|
+
pageSize?: number;
|
|
140
140
|
/**
|
|
141
141
|
* A contract addresses to filter by.
|
|
142
142
|
*/
|
|
@@ -150,23 +150,23 @@ declare class EvmBalancesService {
|
|
|
150
150
|
* @returns ListCollectibleBalancesResponse
|
|
151
151
|
* @throws ApiError
|
|
152
152
|
*/
|
|
153
|
-
listCollectibleBalances({ chainId, address,
|
|
153
|
+
listCollectibleBalances({ chainId, address, pageToken, pageSize, contractAddress, }: {
|
|
154
154
|
/**
|
|
155
|
-
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
155
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
156
156
|
*/
|
|
157
157
|
chainId: string;
|
|
158
158
|
/**
|
|
159
159
|
* A wallet address.
|
|
160
160
|
*/
|
|
161
161
|
address: string;
|
|
162
|
-
/**
|
|
163
|
-
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
164
|
-
*/
|
|
165
|
-
pageSize?: number;
|
|
166
162
|
/**
|
|
167
163
|
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
168
164
|
*/
|
|
169
165
|
pageToken?: string;
|
|
166
|
+
/**
|
|
167
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
168
|
+
*/
|
|
169
|
+
pageSize?: number;
|
|
170
170
|
/**
|
|
171
171
|
* A contract addresses to filter by.
|
|
172
172
|
*/
|
|
@@ -25,8 +25,8 @@ class EvmBalancesService {
|
|
|
25
25
|
chainId,
|
|
26
26
|
address,
|
|
27
27
|
blockNumber,
|
|
28
|
-
pageSize = 10,
|
|
29
28
|
pageToken,
|
|
29
|
+
pageSize = 10,
|
|
30
30
|
contractAddresses,
|
|
31
31
|
currency
|
|
32
32
|
}) {
|
|
@@ -39,8 +39,8 @@ class EvmBalancesService {
|
|
|
39
39
|
},
|
|
40
40
|
query: {
|
|
41
41
|
"blockNumber": blockNumber,
|
|
42
|
-
"pageSize": pageSize,
|
|
43
42
|
"pageToken": pageToken,
|
|
43
|
+
"pageSize": pageSize,
|
|
44
44
|
"contractAddresses": contractAddresses,
|
|
45
45
|
"currency": currency
|
|
46
46
|
}
|
|
@@ -49,8 +49,8 @@ class EvmBalancesService {
|
|
|
49
49
|
listErc721Balances({
|
|
50
50
|
chainId,
|
|
51
51
|
address,
|
|
52
|
-
pageSize = 10,
|
|
53
52
|
pageToken,
|
|
53
|
+
pageSize = 10,
|
|
54
54
|
contractAddress
|
|
55
55
|
}) {
|
|
56
56
|
return this.httpRequest.request({
|
|
@@ -61,8 +61,8 @@ class EvmBalancesService {
|
|
|
61
61
|
"address": address
|
|
62
62
|
},
|
|
63
63
|
query: {
|
|
64
|
-
"pageSize": pageSize,
|
|
65
64
|
"pageToken": pageToken,
|
|
65
|
+
"pageSize": pageSize,
|
|
66
66
|
"contractAddress": contractAddress
|
|
67
67
|
}
|
|
68
68
|
});
|
|
@@ -71,8 +71,8 @@ class EvmBalancesService {
|
|
|
71
71
|
chainId,
|
|
72
72
|
address,
|
|
73
73
|
blockNumber,
|
|
74
|
-
pageSize = 10,
|
|
75
74
|
pageToken,
|
|
75
|
+
pageSize = 10,
|
|
76
76
|
contractAddress
|
|
77
77
|
}) {
|
|
78
78
|
return this.httpRequest.request({
|
|
@@ -84,8 +84,8 @@ class EvmBalancesService {
|
|
|
84
84
|
},
|
|
85
85
|
query: {
|
|
86
86
|
"blockNumber": blockNumber,
|
|
87
|
-
"pageSize": pageSize,
|
|
88
87
|
"pageToken": pageToken,
|
|
88
|
+
"pageSize": pageSize,
|
|
89
89
|
"contractAddress": contractAddress
|
|
90
90
|
}
|
|
91
91
|
});
|
|
@@ -93,8 +93,8 @@ class EvmBalancesService {
|
|
|
93
93
|
listCollectibleBalances({
|
|
94
94
|
chainId,
|
|
95
95
|
address,
|
|
96
|
-
pageSize = 10,
|
|
97
96
|
pageToken,
|
|
97
|
+
pageSize = 10,
|
|
98
98
|
contractAddress
|
|
99
99
|
}) {
|
|
100
100
|
return this.httpRequest.request({
|
|
@@ -105,8 +105,8 @@ class EvmBalancesService {
|
|
|
105
105
|
"address": address
|
|
106
106
|
},
|
|
107
107
|
query: {
|
|
108
|
-
"pageSize": pageSize,
|
|
109
108
|
"pageToken": pageToken,
|
|
109
|
+
"pageSize": pageSize,
|
|
110
110
|
"contractAddress": contractAddress
|
|
111
111
|
}
|
|
112
112
|
});
|
|
@@ -12,19 +12,19 @@ declare class EvmBlocksService {
|
|
|
12
12
|
* @returns ListEvmBlocksResponse
|
|
13
13
|
* @throws ApiError
|
|
14
14
|
*/
|
|
15
|
-
getLatestBlocks({ chainId,
|
|
15
|
+
getLatestBlocks({ chainId, pageToken, pageSize, }: {
|
|
16
16
|
/**
|
|
17
|
-
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
17
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
18
18
|
*/
|
|
19
19
|
chainId: string;
|
|
20
|
-
/**
|
|
21
|
-
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
22
|
-
*/
|
|
23
|
-
pageSize?: number;
|
|
24
20
|
/**
|
|
25
21
|
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
26
22
|
*/
|
|
27
23
|
pageToken?: string;
|
|
24
|
+
/**
|
|
25
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
26
|
+
*/
|
|
27
|
+
pageSize?: number;
|
|
28
28
|
}): CancelablePromise<ListEvmBlocksResponse>;
|
|
29
29
|
/**
|
|
30
30
|
* Get block
|
|
@@ -34,7 +34,7 @@ declare class EvmBlocksService {
|
|
|
34
34
|
*/
|
|
35
35
|
getBlock({ chainId, blockId, }: {
|
|
36
36
|
/**
|
|
37
|
-
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
37
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
38
38
|
*/
|
|
39
39
|
chainId: string;
|
|
40
40
|
/**
|
|
@@ -4,8 +4,8 @@ class EvmBlocksService {
|
|
|
4
4
|
}
|
|
5
5
|
getLatestBlocks({
|
|
6
6
|
chainId,
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
pageToken,
|
|
8
|
+
pageSize = 10
|
|
9
9
|
}) {
|
|
10
10
|
return this.httpRequest.request({
|
|
11
11
|
method: "GET",
|
|
@@ -14,8 +14,8 @@ class EvmBlocksService {
|
|
|
14
14
|
"chainId": chainId
|
|
15
15
|
},
|
|
16
16
|
query: {
|
|
17
|
-
"
|
|
18
|
-
"
|
|
17
|
+
"pageToken": pageToken,
|
|
18
|
+
"pageSize": pageSize
|
|
19
19
|
}
|
|
20
20
|
});
|
|
21
21
|
}
|
|
@@ -27,7 +27,7 @@ declare class EvmChainsService {
|
|
|
27
27
|
*/
|
|
28
28
|
getChainInfo({ chainId, }: {
|
|
29
29
|
/**
|
|
30
|
-
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
30
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
31
31
|
*/
|
|
32
32
|
chainId: string;
|
|
33
33
|
}): CancelablePromise<GetChainResponse>;
|
|
@@ -18,7 +18,7 @@ declare class EvmContractsService {
|
|
|
18
18
|
*/
|
|
19
19
|
getContractMetadata({ chainId, address, }: {
|
|
20
20
|
/**
|
|
21
|
-
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
21
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
22
22
|
*/
|
|
23
23
|
chainId: string;
|
|
24
24
|
/**
|
|
@@ -34,7 +34,7 @@ declare class EvmContractsService {
|
|
|
34
34
|
*/
|
|
35
35
|
updateContractInfo({ chainId, address, requestBody, }: {
|
|
36
36
|
/**
|
|
37
|
-
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
37
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
38
38
|
*/
|
|
39
39
|
chainId: string;
|
|
40
40
|
/**
|
|
@@ -24,7 +24,7 @@ declare class EvmTransactionsService {
|
|
|
24
24
|
*/
|
|
25
25
|
getDeploymentTransaction({ chainId, address, currency, }: {
|
|
26
26
|
/**
|
|
27
|
-
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
27
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
28
28
|
*/
|
|
29
29
|
chainId: string;
|
|
30
30
|
/**
|
|
@@ -42,23 +42,23 @@ declare class EvmTransactionsService {
|
|
|
42
42
|
* @returns ListContractsResponse
|
|
43
43
|
* @throws ApiError
|
|
44
44
|
*/
|
|
45
|
-
listContractDeployments({ chainId, address,
|
|
45
|
+
listContractDeployments({ chainId, address, pageToken, pageSize, }: {
|
|
46
46
|
/**
|
|
47
|
-
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
47
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
48
48
|
*/
|
|
49
49
|
chainId: string;
|
|
50
50
|
/**
|
|
51
51
|
* A wallet address.
|
|
52
52
|
*/
|
|
53
53
|
address: string;
|
|
54
|
-
/**
|
|
55
|
-
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
56
|
-
*/
|
|
57
|
-
pageSize?: number;
|
|
58
54
|
/**
|
|
59
55
|
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
60
56
|
*/
|
|
61
57
|
pageToken?: string;
|
|
58
|
+
/**
|
|
59
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
60
|
+
*/
|
|
61
|
+
pageSize?: number;
|
|
62
62
|
}): CancelablePromise<ListContractsResponse>;
|
|
63
63
|
/**
|
|
64
64
|
* List ERC transfers
|
|
@@ -66,9 +66,9 @@ declare class EvmTransactionsService {
|
|
|
66
66
|
* @returns ListTransfersResponse
|
|
67
67
|
* @throws ApiError
|
|
68
68
|
*/
|
|
69
|
-
listTransfers({ chainId, address, startBlock, endBlock,
|
|
69
|
+
listTransfers({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
|
|
70
70
|
/**
|
|
71
|
-
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
71
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
72
72
|
*/
|
|
73
73
|
chainId: string;
|
|
74
74
|
/**
|
|
@@ -83,14 +83,14 @@ declare class EvmTransactionsService {
|
|
|
83
83
|
* The block range end number, exclusive. If startBlock is not defined when endBlock is defined, the start of the range will be the genesis block.
|
|
84
84
|
*/
|
|
85
85
|
endBlock?: number;
|
|
86
|
-
/**
|
|
87
|
-
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
88
|
-
*/
|
|
89
|
-
pageSize?: number;
|
|
90
86
|
/**
|
|
91
87
|
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
92
88
|
*/
|
|
93
89
|
pageToken?: string;
|
|
90
|
+
/**
|
|
91
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
92
|
+
*/
|
|
93
|
+
pageSize?: number;
|
|
94
94
|
}): CancelablePromise<ListTransfersResponse>;
|
|
95
95
|
/**
|
|
96
96
|
* List transactions
|
|
@@ -100,23 +100,23 @@ declare class EvmTransactionsService {
|
|
|
100
100
|
* @returns ListTransactionDetailsResponse
|
|
101
101
|
* @throws ApiError
|
|
102
102
|
*/
|
|
103
|
-
listTransactions({ chainId, address,
|
|
103
|
+
listTransactions({ chainId, address, pageToken, pageSize, startBlock, endBlock, sortOrder, }: {
|
|
104
104
|
/**
|
|
105
|
-
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
105
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
106
106
|
*/
|
|
107
107
|
chainId: string;
|
|
108
108
|
/**
|
|
109
109
|
* A wallet address.
|
|
110
110
|
*/
|
|
111
111
|
address: string;
|
|
112
|
-
/**
|
|
113
|
-
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
114
|
-
*/
|
|
115
|
-
pageSize?: number;
|
|
116
112
|
/**
|
|
117
113
|
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
118
114
|
*/
|
|
119
115
|
pageToken?: string;
|
|
116
|
+
/**
|
|
117
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
118
|
+
*/
|
|
119
|
+
pageSize?: number;
|
|
120
120
|
/**
|
|
121
121
|
* The block range start number, inclusive. If endBlock is not defined when startBlock is defined, the end of the range will be the most recent block.
|
|
122
122
|
*/
|
|
@@ -136,9 +136,9 @@ declare class EvmTransactionsService {
|
|
|
136
136
|
* @returns ListNativeTransactionsResponse
|
|
137
137
|
* @throws ApiError
|
|
138
138
|
*/
|
|
139
|
-
listNativeTransactions({ chainId, address, startBlock, endBlock,
|
|
139
|
+
listNativeTransactions({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
|
|
140
140
|
/**
|
|
141
|
-
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
141
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
142
142
|
*/
|
|
143
143
|
chainId: string;
|
|
144
144
|
/**
|
|
@@ -153,14 +153,14 @@ declare class EvmTransactionsService {
|
|
|
153
153
|
* The block range end number, exclusive. If startBlock is not defined when endBlock is defined, the start of the range will be the genesis block.
|
|
154
154
|
*/
|
|
155
155
|
endBlock?: number;
|
|
156
|
-
/**
|
|
157
|
-
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
158
|
-
*/
|
|
159
|
-
pageSize?: number;
|
|
160
156
|
/**
|
|
161
157
|
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
162
158
|
*/
|
|
163
159
|
pageToken?: string;
|
|
160
|
+
/**
|
|
161
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
162
|
+
*/
|
|
163
|
+
pageSize?: number;
|
|
164
164
|
}): CancelablePromise<ListNativeTransactionsResponse>;
|
|
165
165
|
/**
|
|
166
166
|
* List ERC-20 transfers
|
|
@@ -168,9 +168,9 @@ declare class EvmTransactionsService {
|
|
|
168
168
|
* @returns ListErc20TransactionsResponse
|
|
169
169
|
* @throws ApiError
|
|
170
170
|
*/
|
|
171
|
-
listErc20Transactions({ chainId, address, startBlock, endBlock,
|
|
171
|
+
listErc20Transactions({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
|
|
172
172
|
/**
|
|
173
|
-
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
173
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
174
174
|
*/
|
|
175
175
|
chainId: string;
|
|
176
176
|
/**
|
|
@@ -185,14 +185,14 @@ declare class EvmTransactionsService {
|
|
|
185
185
|
* The block range end number, exclusive. If startBlock is not defined when endBlock is defined, the start of the range will be the genesis block.
|
|
186
186
|
*/
|
|
187
187
|
endBlock?: number;
|
|
188
|
-
/**
|
|
189
|
-
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
190
|
-
*/
|
|
191
|
-
pageSize?: number;
|
|
192
188
|
/**
|
|
193
189
|
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
194
190
|
*/
|
|
195
191
|
pageToken?: string;
|
|
192
|
+
/**
|
|
193
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
194
|
+
*/
|
|
195
|
+
pageSize?: number;
|
|
196
196
|
}): CancelablePromise<ListErc20TransactionsResponse>;
|
|
197
197
|
/**
|
|
198
198
|
* List ERC-721 transfers
|
|
@@ -200,9 +200,9 @@ declare class EvmTransactionsService {
|
|
|
200
200
|
* @returns ListErc721TransactionsResponse
|
|
201
201
|
* @throws ApiError
|
|
202
202
|
*/
|
|
203
|
-
listErc721Transactions({ chainId, address, startBlock, endBlock,
|
|
203
|
+
listErc721Transactions({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
|
|
204
204
|
/**
|
|
205
|
-
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
205
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
206
206
|
*/
|
|
207
207
|
chainId: string;
|
|
208
208
|
/**
|
|
@@ -217,14 +217,14 @@ declare class EvmTransactionsService {
|
|
|
217
217
|
* The block range end number, exclusive. If startBlock is not defined when endBlock is defined, the start of the range will be the genesis block.
|
|
218
218
|
*/
|
|
219
219
|
endBlock?: number;
|
|
220
|
-
/**
|
|
221
|
-
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
222
|
-
*/
|
|
223
|
-
pageSize?: number;
|
|
224
220
|
/**
|
|
225
221
|
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
226
222
|
*/
|
|
227
223
|
pageToken?: string;
|
|
224
|
+
/**
|
|
225
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
226
|
+
*/
|
|
227
|
+
pageSize?: number;
|
|
228
228
|
}): CancelablePromise<ListErc721TransactionsResponse>;
|
|
229
229
|
/**
|
|
230
230
|
* List ERC-1155 transfers
|
|
@@ -232,9 +232,9 @@ declare class EvmTransactionsService {
|
|
|
232
232
|
* @returns ListErc1155TransactionsResponse
|
|
233
233
|
* @throws ApiError
|
|
234
234
|
*/
|
|
235
|
-
listErc1155Transactions({ chainId, address, startBlock, endBlock,
|
|
235
|
+
listErc1155Transactions({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
|
|
236
236
|
/**
|
|
237
|
-
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
237
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
238
238
|
*/
|
|
239
239
|
chainId: string;
|
|
240
240
|
/**
|
|
@@ -249,14 +249,14 @@ declare class EvmTransactionsService {
|
|
|
249
249
|
* The block range end number, exclusive. If startBlock is not defined when endBlock is defined, the start of the range will be the genesis block.
|
|
250
250
|
*/
|
|
251
251
|
endBlock?: number;
|
|
252
|
-
/**
|
|
253
|
-
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
254
|
-
*/
|
|
255
|
-
pageSize?: number;
|
|
256
252
|
/**
|
|
257
253
|
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
258
254
|
*/
|
|
259
255
|
pageToken?: string;
|
|
256
|
+
/**
|
|
257
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
258
|
+
*/
|
|
259
|
+
pageSize?: number;
|
|
260
260
|
}): CancelablePromise<ListErc1155TransactionsResponse>;
|
|
261
261
|
/**
|
|
262
262
|
* List internal transactions
|
|
@@ -266,9 +266,9 @@ declare class EvmTransactionsService {
|
|
|
266
266
|
* @returns ListInternalTransactionsResponse
|
|
267
267
|
* @throws ApiError
|
|
268
268
|
*/
|
|
269
|
-
listInternalTransactions({ chainId, address, startBlock, endBlock,
|
|
269
|
+
listInternalTransactions({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
|
|
270
270
|
/**
|
|
271
|
-
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
271
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
272
272
|
*/
|
|
273
273
|
chainId: string;
|
|
274
274
|
/**
|
|
@@ -283,14 +283,14 @@ declare class EvmTransactionsService {
|
|
|
283
283
|
* The block range end number, exclusive. If startBlock is not defined when endBlock is defined, the start of the range will be the genesis block.
|
|
284
284
|
*/
|
|
285
285
|
endBlock?: number;
|
|
286
|
-
/**
|
|
287
|
-
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
288
|
-
*/
|
|
289
|
-
pageSize?: number;
|
|
290
286
|
/**
|
|
291
287
|
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
292
288
|
*/
|
|
293
289
|
pageToken?: string;
|
|
290
|
+
/**
|
|
291
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
292
|
+
*/
|
|
293
|
+
pageSize?: number;
|
|
294
294
|
}): CancelablePromise<ListInternalTransactionsResponse>;
|
|
295
295
|
/**
|
|
296
296
|
* Get transaction
|
|
@@ -300,7 +300,7 @@ declare class EvmTransactionsService {
|
|
|
300
300
|
*/
|
|
301
301
|
getTransaction({ chainId, txHash, }: {
|
|
302
302
|
/**
|
|
303
|
-
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
303
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
304
304
|
*/
|
|
305
305
|
chainId: string;
|
|
306
306
|
/**
|
|
@@ -316,7 +316,7 @@ declare class EvmTransactionsService {
|
|
|
316
316
|
*/
|
|
317
317
|
getTransactionsForBlock({ chainId, blockId, }: {
|
|
318
318
|
/**
|
|
319
|
-
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
319
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
320
320
|
*/
|
|
321
321
|
chainId: string;
|
|
322
322
|
/**
|
|
@@ -330,19 +330,19 @@ declare class EvmTransactionsService {
|
|
|
330
330
|
* @returns ListNativeTransactionsResponse
|
|
331
331
|
* @throws ApiError
|
|
332
332
|
*/
|
|
333
|
-
listLatestTransactions({ chainId,
|
|
333
|
+
listLatestTransactions({ chainId, pageToken, pageSize, status, }: {
|
|
334
334
|
/**
|
|
335
|
-
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
335
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
336
336
|
*/
|
|
337
337
|
chainId: string;
|
|
338
|
-
/**
|
|
339
|
-
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
340
|
-
*/
|
|
341
|
-
pageSize?: number;
|
|
342
338
|
/**
|
|
343
339
|
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
344
340
|
*/
|
|
345
341
|
pageToken?: string;
|
|
342
|
+
/**
|
|
343
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
344
|
+
*/
|
|
345
|
+
pageSize?: number;
|
|
346
346
|
/**
|
|
347
347
|
* A status filter for listed transactions.
|
|
348
348
|
*/
|