@avalabs/glacier-sdk 3.1.0-canary.1831fe3.0 → 3.1.0-canary.639f9ba.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 +344 -86
- package/dist/index.js +1 -1
- package/esm/generated/models/AddressesChangeRequest.d.ts +1 -1
- package/esm/generated/models/BadGateway.d.ts +16 -0
- package/esm/generated/models/BadRequest.d.ts +16 -0
- package/esm/generated/models/DataListChainsResponse.d.ts +7 -0
- package/esm/generated/models/Forbidden.d.ts +16 -0
- package/esm/generated/models/GetTransactionResponse.d.ts +5 -0
- package/esm/generated/models/InternalServerError.d.ts +16 -0
- package/esm/generated/models/LogsFormat.d.ts +1 -1
- package/esm/generated/models/Metric.d.ts +14 -0
- package/esm/generated/models/NotFound.d.ts +16 -0
- package/esm/generated/models/RequestType.d.ts +2 -2
- package/esm/generated/models/RequestType.js +1 -1
- package/esm/generated/models/ServiceUnavailable.d.ts +16 -0
- package/esm/generated/models/TeleporterMessageInfo.d.ts +16 -0
- package/esm/generated/models/TooManyRequests.d.ts +16 -0
- package/esm/generated/models/TransactionDirectionType.d.ts +6 -0
- package/esm/generated/models/TransactionDirectionType.js +1 -0
- package/esm/generated/models/Unauthorized.d.ts +16 -0
- package/esm/generated/models/UsageMetricsGroupByEnum.d.ts +2 -1
- package/esm/generated/models/UsageMetricsGroupByEnum.js +1 -1
- package/esm/generated/models/UsageMetricsResponseDTO.d.ts +3 -1
- package/esm/generated/models/UsageMetricsValueDTO.d.ts +53 -0
- package/esm/generated/models/UsageMetricsValueDTO.js +1 -0
- package/esm/generated/services/EvmBalancesService.d.ts +5 -5
- package/esm/generated/services/EvmBalancesService.js +1 -1
- package/esm/generated/services/EvmBlocksService.d.ts +2 -2
- package/esm/generated/services/EvmBlocksService.js +1 -1
- package/esm/generated/services/EvmChainsService.d.ts +2 -2
- package/esm/generated/services/EvmChainsService.js +1 -1
- package/esm/generated/services/EvmContractsService.d.ts +2 -2
- package/esm/generated/services/EvmContractsService.js +1 -1
- package/esm/generated/services/EvmTransactionsService.d.ts +12 -12
- package/esm/generated/services/EvmTransactionsService.js +1 -1
- package/esm/generated/services/GlacierApiUsageMetricsService.d.ts +33 -9
- package/esm/generated/services/GlacierApiUsageMetricsService.js +1 -1
- package/esm/generated/services/HealthCheckService.d.ts +1 -1
- package/esm/generated/services/HealthCheckService.js +1 -1
- package/esm/generated/services/NfTsService.d.ts +3 -3
- package/esm/generated/services/NfTsService.js +1 -1
- package/esm/generated/services/OperationsService.d.ts +2 -2
- package/esm/generated/services/OperationsService.js +1 -1
- package/esm/generated/services/PrimaryNetworkBalancesService.d.ts +1 -1
- package/esm/generated/services/PrimaryNetworkBalancesService.js +1 -1
- package/esm/generated/services/PrimaryNetworkBlocksService.d.ts +3 -3
- package/esm/generated/services/PrimaryNetworkBlocksService.js +1 -1
- package/esm/generated/services/PrimaryNetworkRewardsService.d.ts +2 -2
- package/esm/generated/services/PrimaryNetworkRewardsService.js +1 -1
- package/esm/generated/services/PrimaryNetworkService.d.ts +9 -9
- package/esm/generated/services/PrimaryNetworkService.js +1 -1
- package/esm/generated/services/PrimaryNetworkTransactionsService.d.ts +9 -9
- package/esm/generated/services/PrimaryNetworkTransactionsService.js +1 -1
- package/esm/generated/services/PrimaryNetworkUtxOsService.d.ts +1 -1
- package/esm/generated/services/PrimaryNetworkUtxOsService.js +1 -1
- package/esm/generated/services/PrimaryNetworkVerticesService.d.ts +3 -3
- package/esm/generated/services/PrimaryNetworkVerticesService.js +1 -1
- package/esm/generated/services/RpcService.d.ts +1 -1
- package/esm/generated/services/RpcService.js +1 -1
- package/esm/generated/services/TeleporterService.d.ts +26 -2
- package/esm/generated/services/TeleporterService.js +1 -1
- package/esm/generated/services/WebhooksService.d.ts +10 -10
- package/esm/generated/services/WebhooksService.js +1 -1
- package/esm/index.d.ts +13 -0
- package/esm/index.js +1 -1
- package/package.json +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
var
|
|
1
|
+
var a=(a=>(a.DATA="data",a.RPC="rpc",a))(a||{});export{a as RequestType};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
type ServiceUnavailable = {
|
|
2
|
+
/**
|
|
3
|
+
* The error message describing the reason for the exception
|
|
4
|
+
*/
|
|
5
|
+
message: (string | Array<string>);
|
|
6
|
+
/**
|
|
7
|
+
* The HTTP status code of the response
|
|
8
|
+
*/
|
|
9
|
+
statusCode: number;
|
|
10
|
+
/**
|
|
11
|
+
* The type of error
|
|
12
|
+
*/
|
|
13
|
+
error: string;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { ServiceUnavailable };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { TransactionDirectionType } from './TransactionDirectionType.js';
|
|
2
|
+
|
|
3
|
+
type TeleporterMessageInfo = {
|
|
4
|
+
teleporterMessageId: string;
|
|
5
|
+
direction: TransactionDirectionType;
|
|
6
|
+
/**
|
|
7
|
+
* chain id of the source chain. valid only for destination transactions
|
|
8
|
+
*/
|
|
9
|
+
sourceChainId?: Record<string, any>;
|
|
10
|
+
/**
|
|
11
|
+
* chain id of the destination chain. valid only for source transactions
|
|
12
|
+
*/
|
|
13
|
+
destinationChainId?: Record<string, any>;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { TeleporterMessageInfo };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
type TooManyRequests = {
|
|
2
|
+
/**
|
|
3
|
+
* The error message describing the reason for the exception
|
|
4
|
+
*/
|
|
5
|
+
message: (string | Array<string>);
|
|
6
|
+
/**
|
|
7
|
+
* The HTTP status code of the response
|
|
8
|
+
*/
|
|
9
|
+
statusCode: number;
|
|
10
|
+
/**
|
|
11
|
+
* The type of error
|
|
12
|
+
*/
|
|
13
|
+
error: string;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { TooManyRequests };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var N=(N=>(N.SOURCE_TRANSACTION="SOURCE_TRANSACTION",N.DESTINATION_TRANSACTION="DESTINATION_TRANSACTION",N))(N||{});export{N as TransactionDirectionType};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
type Unauthorized = {
|
|
2
|
+
/**
|
|
3
|
+
* The error message describing the reason for the exception
|
|
4
|
+
*/
|
|
5
|
+
message: (string | Array<string>);
|
|
6
|
+
/**
|
|
7
|
+
* The HTTP status code of the response
|
|
8
|
+
*/
|
|
9
|
+
statusCode: number;
|
|
10
|
+
/**
|
|
11
|
+
* The type of error
|
|
12
|
+
*/
|
|
13
|
+
error: string;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { Unauthorized };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var e=(e=>(e.REQUEST_PATH="requestPath",e.RESPONSE_CODE="responseCode",e.CHAIN_ID="chainId",e.API_KEY_ID="apiKeyId",e))(e||{});export{e as UsageMetricsGroupByEnum};
|
|
1
|
+
var e=(e=>(e.REQUEST_PATH="requestPath",e.RESPONSE_CODE="responseCode",e.CHAIN_ID="chainId",e.API_KEY_ID="apiKeyId",e.REQUEST_TYPE="requestType",e))(e||{});export{e as UsageMetricsGroupByEnum};
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { Metric } from './Metric.js';
|
|
2
|
+
|
|
1
3
|
type UsageMetricsResponseDTO = {
|
|
2
4
|
/**
|
|
3
5
|
* Duration in which the metrics value is aggregated
|
|
@@ -10,7 +12,7 @@ type UsageMetricsResponseDTO = {
|
|
|
10
12
|
/**
|
|
11
13
|
* Metrics values
|
|
12
14
|
*/
|
|
13
|
-
metrics: Array<
|
|
15
|
+
metrics: Array<Metric>;
|
|
14
16
|
};
|
|
15
17
|
|
|
16
18
|
export { UsageMetricsResponseDTO };
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
type UsageMetricsValueDTO = {
|
|
2
|
+
/**
|
|
3
|
+
* Column name used for data aggregation
|
|
4
|
+
*/
|
|
5
|
+
groupedBy: UsageMetricsValueDTO.groupedBy;
|
|
6
|
+
/**
|
|
7
|
+
* The value of the column used for data aggregation
|
|
8
|
+
*/
|
|
9
|
+
groupValue?: (string | number);
|
|
10
|
+
/**
|
|
11
|
+
* The total number of requests
|
|
12
|
+
*/
|
|
13
|
+
totalRequests: number;
|
|
14
|
+
/**
|
|
15
|
+
* The number of requests per second
|
|
16
|
+
*/
|
|
17
|
+
requestsPerSecond: number;
|
|
18
|
+
/**
|
|
19
|
+
* The success rate percentage
|
|
20
|
+
*/
|
|
21
|
+
successRatePercent: number;
|
|
22
|
+
/**
|
|
23
|
+
* The median response time in milliseconds
|
|
24
|
+
*/
|
|
25
|
+
medianResponseTimeMsecs: number;
|
|
26
|
+
/**
|
|
27
|
+
* The number of invalid requests
|
|
28
|
+
*/
|
|
29
|
+
invalidRequests: number;
|
|
30
|
+
/**
|
|
31
|
+
* The number of API credits used
|
|
32
|
+
*/
|
|
33
|
+
apiCreditsUsed: number;
|
|
34
|
+
/**
|
|
35
|
+
* The number of API credits wasted on invalid requests
|
|
36
|
+
*/
|
|
37
|
+
apiCreditsWasted: number;
|
|
38
|
+
};
|
|
39
|
+
declare namespace UsageMetricsValueDTO {
|
|
40
|
+
/**
|
|
41
|
+
* Column name used for data aggregation
|
|
42
|
+
*/
|
|
43
|
+
enum groupedBy {
|
|
44
|
+
REQUEST_PATH = "requestPath",
|
|
45
|
+
RESPONSE_CODE = "responseCode",
|
|
46
|
+
CHAIN_ID = "chainId",
|
|
47
|
+
API_KEY_ID = "apiKeyId",
|
|
48
|
+
REQUEST_TYPE = "requestType",
|
|
49
|
+
NONE = "None"
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export { UsageMetricsValueDTO };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var e,E,r;E=e||(e={}),(r=E.groupedBy||(E.groupedBy={})).REQUEST_PATH="requestPath",r.RESPONSE_CODE="responseCode",r.CHAIN_ID="chainId",r.API_KEY_ID="apiKeyId",r.REQUEST_TYPE="requestType",r.NONE="None";export{e as UsageMetricsValueDTO};
|
|
@@ -15,7 +15,7 @@ declare class EvmBalancesService {
|
|
|
15
15
|
* Gets native token balance of a wallet address.
|
|
16
16
|
*
|
|
17
17
|
* Balance at a given block can be retrieved with the `blockNumber` parameter.
|
|
18
|
-
* @returns GetNativeBalanceResponse
|
|
18
|
+
* @returns GetNativeBalanceResponse Successful response
|
|
19
19
|
* @throws ApiError
|
|
20
20
|
*/
|
|
21
21
|
getNativeBalance({ chainId, address, blockNumber, currency, }: {
|
|
@@ -43,7 +43,7 @@ declare class EvmBalancesService {
|
|
|
43
43
|
* Balance at a given block can be retrieved with the `blockNumber` parameter.
|
|
44
44
|
*
|
|
45
45
|
* Balance for specific contracts can be retrieved with the `contractAddresses` parameter.
|
|
46
|
-
* @returns ListErc20BalancesResponse
|
|
46
|
+
* @returns ListErc20BalancesResponse Successful response
|
|
47
47
|
* @throws ApiError
|
|
48
48
|
*/
|
|
49
49
|
listErc20Balances({ chainId, address, blockNumber, pageToken, pageSize, filterSpamTokens, contractAddresses, currency, }: {
|
|
@@ -85,7 +85,7 @@ declare class EvmBalancesService {
|
|
|
85
85
|
* Lists ERC-721 token balances of a wallet address.
|
|
86
86
|
*
|
|
87
87
|
* Balance for a specific contract can be retrieved with the `contractAddress` parameter.
|
|
88
|
-
* @returns ListErc721BalancesResponse
|
|
88
|
+
* @returns ListErc721BalancesResponse Successful response
|
|
89
89
|
* @throws ApiError
|
|
90
90
|
*/
|
|
91
91
|
listErc721Balances({ chainId, address, pageToken, pageSize, contractAddress, }: {
|
|
@@ -117,7 +117,7 @@ declare class EvmBalancesService {
|
|
|
117
117
|
* Balance at a given block can be retrieved with the `blockNumber` parameter.
|
|
118
118
|
*
|
|
119
119
|
* Balance for a specific contract can be retrieved with the `contractAddress` parameter.
|
|
120
|
-
* @returns ListErc1155BalancesResponse
|
|
120
|
+
* @returns ListErc1155BalancesResponse Successful response
|
|
121
121
|
* @throws ApiError
|
|
122
122
|
*/
|
|
123
123
|
listErc1155Balances({ chainId, address, blockNumber, pageToken, pageSize, contractAddress, }: {
|
|
@@ -151,7 +151,7 @@ declare class EvmBalancesService {
|
|
|
151
151
|
* Lists ERC-721 and ERC-1155 token balances of a wallet address.
|
|
152
152
|
*
|
|
153
153
|
* Balance for a specific contract can be retrieved with the `contractAddress` parameter.
|
|
154
|
-
* @returns ListCollectibleBalancesResponse
|
|
154
|
+
* @returns ListCollectibleBalancesResponse Successful response
|
|
155
155
|
* @throws ApiError
|
|
156
156
|
*/
|
|
157
157
|
listCollectibleBalances({ chainId, address, pageToken, pageSize, contractAddress, }: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
class e{constructor(e){this.httpRequest=e}getNativeBalance({chainId:e,address:
|
|
1
|
+
class e{constructor(e){this.httpRequest=e}getNativeBalance({chainId:e,address:r,blockNumber:t,currency:s}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/addresses/{address}/balances:getNative",path:{chainId:e,address:r},query:{blockNumber:t,currency:s},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}listErc20Balances({chainId:e,address:r,blockNumber:t,pageToken:s,pageSize:n=10,filterSpamTokens:a=!0,contractAddresses:i,currency:o}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/addresses/{address}/balances:listErc20",path:{chainId:e,address:r},query:{blockNumber:t,pageToken:s,pageSize:n,filterSpamTokens:a,contractAddresses:i,currency:o},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}listErc721Balances({chainId:e,address:r,pageToken:t,pageSize:s=10,contractAddress:n}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/addresses/{address}/balances:listErc721",path:{chainId:e,address:r},query:{pageToken:t,pageSize:s,contractAddress:n},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}listErc1155Balances({chainId:e,address:r,blockNumber:t,pageToken:s,pageSize:n=10,contractAddress:a}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/addresses/{address}/balances:listErc1155",path:{chainId:e,address:r},query:{blockNumber:t,pageToken:s,pageSize:n,contractAddress:a},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}listCollectibleBalances({chainId:e,address:r,pageToken:t,pageSize:s=10,contractAddress:n}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/addresses/{address}/balances:listCollectibles",path:{chainId:e,address:r},query:{pageToken:t,pageSize:s,contractAddress:n},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}}export{e as EvmBalancesService};
|
|
@@ -9,7 +9,7 @@ declare class EvmBlocksService {
|
|
|
9
9
|
/**
|
|
10
10
|
* List latest blocks
|
|
11
11
|
* Lists the latest indexed blocks on the EVM-compatible chain sorted in descending order by block timestamp.
|
|
12
|
-
* @returns ListEvmBlocksResponse
|
|
12
|
+
* @returns ListEvmBlocksResponse Successful response
|
|
13
13
|
* @throws ApiError
|
|
14
14
|
*/
|
|
15
15
|
getLatestBlocks({ chainId, pageToken, pageSize, }: {
|
|
@@ -29,7 +29,7 @@ declare class EvmBlocksService {
|
|
|
29
29
|
/**
|
|
30
30
|
* Get block
|
|
31
31
|
* Gets the details of an individual block on the EVM-compatible chain.
|
|
32
|
-
* @returns GetEvmBlockResponse
|
|
32
|
+
* @returns GetEvmBlockResponse Successful response
|
|
33
33
|
* @throws ApiError
|
|
34
34
|
*/
|
|
35
35
|
getBlock({ chainId, blockId, }: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
class e{constructor(e){this.httpRequest=e}getLatestBlocks({chainId:e,pageToken:
|
|
1
|
+
class e{constructor(e){this.httpRequest=e}getLatestBlocks({chainId:e,pageToken:r,pageSize:t=10}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/blocks",path:{chainId:e},query:{pageToken:r,pageSize:t},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}getBlock({chainId:e,blockId:r}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/blocks/{blockId}",path:{chainId:e,blockId:r},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}}export{e as EvmBlocksService};
|
|
@@ -11,7 +11,7 @@ declare class EvmChainsService {
|
|
|
11
11
|
/**
|
|
12
12
|
* List chains
|
|
13
13
|
* Lists the supported EVM-compatible chains. Filterable by network.
|
|
14
|
-
* @returns ListChainsResponse
|
|
14
|
+
* @returns ListChainsResponse Successful response
|
|
15
15
|
* @throws ApiError
|
|
16
16
|
*/
|
|
17
17
|
supportedChains({ network, feature, }: {
|
|
@@ -27,7 +27,7 @@ declare class EvmChainsService {
|
|
|
27
27
|
/**
|
|
28
28
|
* Get chain information
|
|
29
29
|
* Gets chain information for the EVM-compatible chain if supported by the api.
|
|
30
|
-
* @returns GetChainResponse
|
|
30
|
+
* @returns GetChainResponse Successful response
|
|
31
31
|
* @throws ApiError
|
|
32
32
|
*/
|
|
33
33
|
getChainInfo({ chainId, }: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
class
|
|
1
|
+
class e{constructor(e){this.httpRequest=e}supportedChains({network:e,feature:r}){return this.httpRequest.request({method:"GET",url:"/v1/chains",query:{network:e,feature:r},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}getChainInfo({chainId:e}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}",path:{chainId:e},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}}export{e as EvmChainsService};
|
|
@@ -13,7 +13,7 @@ declare class EvmContractsService {
|
|
|
13
13
|
/**
|
|
14
14
|
* Get contract metadata
|
|
15
15
|
* Gets metadata about the contract at the given address.
|
|
16
|
-
* @returns any
|
|
16
|
+
* @returns any Successful response
|
|
17
17
|
* @throws ApiError
|
|
18
18
|
*/
|
|
19
19
|
getContractMetadata({ chainId, address, }: {
|
|
@@ -29,7 +29,7 @@ declare class EvmContractsService {
|
|
|
29
29
|
/**
|
|
30
30
|
* Update contract information
|
|
31
31
|
* Update contract information. Updates will be reviewed by the Ava Labs team before they are published.
|
|
32
|
-
* @returns UpdateContractResponse
|
|
32
|
+
* @returns UpdateContractResponse Successful response
|
|
33
33
|
* @throws ApiError
|
|
34
34
|
*/
|
|
35
35
|
updateContractInfo({ chainId, address, requestBody, }: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
class
|
|
1
|
+
class e{constructor(e){this.httpRequest=e}getContractMetadata({chainId:e,address:r}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/addresses/{address}",path:{chainId:e,address:r},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}updateContractInfo({chainId:e,address:r,requestBody:t}){return this.httpRequest.request({method:"PATCH",url:"/v1/chains/{chainId}/contracts/{address}",path:{chainId:e,address:r},body:t,mediaType:"application/json",errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}}export{e as EvmContractsService};
|
|
@@ -19,7 +19,7 @@ declare class EvmTransactionsService {
|
|
|
19
19
|
/**
|
|
20
20
|
* Get deployment transaction
|
|
21
21
|
* If the address is a smart contract, returns the transaction in which it was deployed.
|
|
22
|
-
* @returns GetTransactionResponse
|
|
22
|
+
* @returns GetTransactionResponse Successful response
|
|
23
23
|
* @throws ApiError
|
|
24
24
|
*/
|
|
25
25
|
getDeploymentTransaction({ chainId, address, currency, }: {
|
|
@@ -39,7 +39,7 @@ declare class EvmTransactionsService {
|
|
|
39
39
|
/**
|
|
40
40
|
* List deployed contracts
|
|
41
41
|
* Lists all contracts deployed by the given address.
|
|
42
|
-
* @returns ListContractsResponse
|
|
42
|
+
* @returns ListContractsResponse Successful response
|
|
43
43
|
* @throws ApiError
|
|
44
44
|
*/
|
|
45
45
|
listContractDeployments({ chainId, address, pageToken, pageSize, }: {
|
|
@@ -63,7 +63,7 @@ declare class EvmTransactionsService {
|
|
|
63
63
|
/**
|
|
64
64
|
* List ERC transfers
|
|
65
65
|
* Lists ERC transfers for an ERC-20, ERC-721, or ERC-1155 contract address.
|
|
66
|
-
* @returns ListTransfersResponse
|
|
66
|
+
* @returns ListTransfersResponse Successful response
|
|
67
67
|
* @throws ApiError
|
|
68
68
|
*/
|
|
69
69
|
listTransfers({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
|
|
@@ -97,7 +97,7 @@ declare class EvmTransactionsService {
|
|
|
97
97
|
* Returns a list of transactions where the given wallet address had an on-chain interaction for the given chain. The ERC-20 transfers, ERC-721 transfers, ERC-1155, and internal transactions returned are only those where the input address had an interaction. Specifically, those lists only inlcude entries where the input address was the sender (`from` field) or the receiver (`to` field) for the sub-transaction. Therefore the transactions returned from this list may not be complete representations of the on-chain data. For a complete view of a transaction use the `/chains/:chainId/transactions/:txHash` endpoint.
|
|
98
98
|
*
|
|
99
99
|
* Filterable by block ranges.
|
|
100
|
-
* @returns ListTransactionDetailsResponse
|
|
100
|
+
* @returns ListTransactionDetailsResponse Successful response
|
|
101
101
|
* @throws ApiError
|
|
102
102
|
*/
|
|
103
103
|
listTransactions({ chainId, address, pageToken, pageSize, startBlock, endBlock, sortOrder, }: {
|
|
@@ -133,7 +133,7 @@ declare class EvmTransactionsService {
|
|
|
133
133
|
/**
|
|
134
134
|
* List native transactions
|
|
135
135
|
* Lists native transactions for an address. Filterable by block range.
|
|
136
|
-
* @returns ListNativeTransactionsResponse
|
|
136
|
+
* @returns ListNativeTransactionsResponse Successful response
|
|
137
137
|
* @throws ApiError
|
|
138
138
|
*/
|
|
139
139
|
listNativeTransactions({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
|
|
@@ -165,7 +165,7 @@ declare class EvmTransactionsService {
|
|
|
165
165
|
/**
|
|
166
166
|
* List ERC-20 transfers
|
|
167
167
|
* Lists ERC-20 transfers for an address. Filterable by block range.
|
|
168
|
-
* @returns ListErc20TransactionsResponse
|
|
168
|
+
* @returns ListErc20TransactionsResponse Successful response
|
|
169
169
|
* @throws ApiError
|
|
170
170
|
*/
|
|
171
171
|
listErc20Transactions({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
|
|
@@ -197,7 +197,7 @@ declare class EvmTransactionsService {
|
|
|
197
197
|
/**
|
|
198
198
|
* List ERC-721 transfers
|
|
199
199
|
* Lists ERC-721 transfers for an address. Filterable by block range.
|
|
200
|
-
* @returns ListErc721TransactionsResponse
|
|
200
|
+
* @returns ListErc721TransactionsResponse Successful response
|
|
201
201
|
* @throws ApiError
|
|
202
202
|
*/
|
|
203
203
|
listErc721Transactions({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
|
|
@@ -229,7 +229,7 @@ declare class EvmTransactionsService {
|
|
|
229
229
|
/**
|
|
230
230
|
* List ERC-1155 transfers
|
|
231
231
|
* Lists ERC-1155 transfers for an address. Filterable by block range.
|
|
232
|
-
* @returns ListErc1155TransactionsResponse
|
|
232
|
+
* @returns ListErc1155TransactionsResponse Successful response
|
|
233
233
|
* @throws ApiError
|
|
234
234
|
*/
|
|
235
235
|
listErc1155Transactions({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
|
|
@@ -263,7 +263,7 @@ declare class EvmTransactionsService {
|
|
|
263
263
|
* Returns a list of internal transactions for an address and chain. Filterable by block range.
|
|
264
264
|
*
|
|
265
265
|
* Note that the internal transactions list only contains `CALL` or `CALLCODE` transactions with a non-zero value and `CREATE`/`CREATE2` transactions. To get a complete list of internal transactions use the `debug_` prefixed RPC methods on an archive node.
|
|
266
|
-
* @returns ListInternalTransactionsResponse
|
|
266
|
+
* @returns ListInternalTransactionsResponse Successful response
|
|
267
267
|
* @throws ApiError
|
|
268
268
|
*/
|
|
269
269
|
listInternalTransactions({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
|
|
@@ -295,7 +295,7 @@ declare class EvmTransactionsService {
|
|
|
295
295
|
/**
|
|
296
296
|
* Get transaction
|
|
297
297
|
* Gets the details of a single transaction.
|
|
298
|
-
* @returns GetTransactionResponse
|
|
298
|
+
* @returns GetTransactionResponse Successful response
|
|
299
299
|
* @throws ApiError
|
|
300
300
|
*/
|
|
301
301
|
getTransaction({ chainId, txHash, }: {
|
|
@@ -311,7 +311,7 @@ declare class EvmTransactionsService {
|
|
|
311
311
|
/**
|
|
312
312
|
* List transactions for a block
|
|
313
313
|
* Lists the transactions that occured in a given block.
|
|
314
|
-
* @returns ListNativeTransactionsResponse
|
|
314
|
+
* @returns ListNativeTransactionsResponse Successful response
|
|
315
315
|
* @throws ApiError
|
|
316
316
|
*/
|
|
317
317
|
getTransactionsForBlock({ chainId, blockId, }: {
|
|
@@ -327,7 +327,7 @@ declare class EvmTransactionsService {
|
|
|
327
327
|
/**
|
|
328
328
|
* List latest transactions
|
|
329
329
|
* Lists the latest transactions. Filterable by status.
|
|
330
|
-
* @returns ListNativeTransactionsResponse
|
|
330
|
+
* @returns ListNativeTransactionsResponse Successful response
|
|
331
331
|
* @throws ApiError
|
|
332
332
|
*/
|
|
333
333
|
listLatestTransactions({ chainId, pageToken, pageSize, status, }: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
class e{constructor(e){this.httpRequest=e}getDeploymentTransaction({chainId:e,address:s,currency:t}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/contracts/{address}/transactions:getDeployment",path:{chainId:e,address:s},query:{currency:t}})}listContractDeployments({chainId:e,address:s,pageToken:t,pageSize:a=10}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/contracts/{address}/deployments",path:{chainId:e,address:s},query:{pageToken:t,pageSize:a}})}listTransfers({chainId:e,address:s,startBlock:t,endBlock:a,pageToken:r,pageSize:n=10}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/tokens/{address}/transfers",path:{chainId:e,address:s},query:{startBlock:t,endBlock:a,pageToken:r,pageSize:n}})}listTransactions({chainId:e,address:s,pageToken:t,pageSize:a=10,startBlock:r,endBlock:n,sortOrder:d}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/addresses/{address}/transactions",path:{chainId:e,address:s},query:{pageToken:t,pageSize:a,startBlock:r,endBlock:n,sortOrder:d}})}listNativeTransactions({chainId:e,address:s,startBlock:t,endBlock:a,pageToken:r,pageSize:n=10}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/addresses/{address}/transactions:listNative",path:{chainId:e,address:s},query:{startBlock:t,endBlock:a,pageToken:r,pageSize:n}})}listErc20Transactions({chainId:e,address:s,startBlock:t,endBlock:a,pageToken:r,pageSize:n=10}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/addresses/{address}/transactions:listErc20",path:{chainId:e,address:s},query:{startBlock:t,endBlock:a,pageToken:r,pageSize:n}})}listErc721Transactions({chainId:e,address:s,startBlock:t,endBlock:a,pageToken:r,pageSize:n=10}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/addresses/{address}/transactions:listErc721",path:{chainId:e,address:s},query:{startBlock:t,endBlock:a,pageToken:r,pageSize:n}})}listErc1155Transactions({chainId:e,address:s,startBlock:t,endBlock:a,pageToken:r,pageSize:n=10}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/addresses/{address}/transactions:listErc1155",path:{chainId:e,address:s},query:{startBlock:t,endBlock:a,pageToken:r,pageSize:n}})}listInternalTransactions({chainId:e,address:s,startBlock:t,endBlock:a,pageToken:r,pageSize:n=10}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/addresses/{address}/transactions:listInternals",path:{chainId:e,address:s},query:{startBlock:t,endBlock:a,pageToken:r,pageSize:n}})}getTransaction({chainId:e,txHash:s}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/transactions/{txHash}",path:{chainId:e,txHash:s}})}getTransactionsForBlock({chainId:e,blockId:s}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/blocks/{blockId}/transactions",path:{chainId:e,blockId:s}})}listLatestTransactions({chainId:e,pageToken:s,pageSize:t=10,status:a}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/transactions",path:{chainId:e},query:{pageToken:s,pageSize:t,status:a}})}}export{e as EvmTransactionsService};
|
|
1
|
+
class e{constructor(e){this.httpRequest=e}getDeploymentTransaction({chainId:e,address:r,currency:t}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/contracts/{address}/transactions:getDeployment",path:{chainId:e,address:r},query:{currency:t},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}listContractDeployments({chainId:e,address:r,pageToken:t,pageSize:s=10}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/contracts/{address}/deployments",path:{chainId:e,address:r},query:{pageToken:t,pageSize:s},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}listTransfers({chainId:e,address:r,startBlock:t,endBlock:s,pageToken:n,pageSize:a=10}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/tokens/{address}/transfers",path:{chainId:e,address:r},query:{startBlock:t,endBlock:s,pageToken:n,pageSize:a},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}listTransactions({chainId:e,address:r,pageToken:t,pageSize:s=10,startBlock:n,endBlock:a,sortOrder:i}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/addresses/{address}/transactions",path:{chainId:e,address:r},query:{pageToken:t,pageSize:s,startBlock:n,endBlock:a,sortOrder:i},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}listNativeTransactions({chainId:e,address:r,startBlock:t,endBlock:s,pageToken:n,pageSize:a=10}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/addresses/{address}/transactions:listNative",path:{chainId:e,address:r},query:{startBlock:t,endBlock:s,pageToken:n,pageSize:a},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}listErc20Transactions({chainId:e,address:r,startBlock:t,endBlock:s,pageToken:n,pageSize:a=10}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/addresses/{address}/transactions:listErc20",path:{chainId:e,address:r},query:{startBlock:t,endBlock:s,pageToken:n,pageSize:a},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}listErc721Transactions({chainId:e,address:r,startBlock:t,endBlock:s,pageToken:n,pageSize:a=10}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/addresses/{address}/transactions:listErc721",path:{chainId:e,address:r},query:{startBlock:t,endBlock:s,pageToken:n,pageSize:a},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}listErc1155Transactions({chainId:e,address:r,startBlock:t,endBlock:s,pageToken:n,pageSize:a=10}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/addresses/{address}/transactions:listErc1155",path:{chainId:e,address:r},query:{startBlock:t,endBlock:s,pageToken:n,pageSize:a},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}listInternalTransactions({chainId:e,address:r,startBlock:t,endBlock:s,pageToken:n,pageSize:a=10}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/addresses/{address}/transactions:listInternals",path:{chainId:e,address:r},query:{startBlock:t,endBlock:s,pageToken:n,pageSize:a},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}getTransaction({chainId:e,txHash:r}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/transactions/{txHash}",path:{chainId:e,txHash:r},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}getTransactionsForBlock({chainId:e,blockId:r}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/blocks/{blockId}/transactions",path:{chainId:e,blockId:r},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}listLatestTransactions({chainId:e,pageToken:r,pageSize:t=10,status:s}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/transactions",path:{chainId:e},query:{pageToken:r,pageSize:t,status:s},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}}export{e as EvmTransactionsService};
|
|
@@ -11,10 +11,10 @@ declare class GlacierApiUsageMetricsService {
|
|
|
11
11
|
/**
|
|
12
12
|
* Get usage metrics for the Glacier API
|
|
13
13
|
* Gets metrics for Glacier API usage over a specified time interval aggregated at the specified time-duration granularity.
|
|
14
|
-
* @returns UsageMetricsResponseDTO
|
|
14
|
+
* @returns UsageMetricsResponseDTO Successful response
|
|
15
15
|
* @throws ApiError
|
|
16
16
|
*/
|
|
17
|
-
getApiUsageMetrics({ orgId, startTimestamp, endTimestamp, timeInterval, groupBy, requestPath,
|
|
17
|
+
getApiUsageMetrics({ orgId, startTimestamp, endTimestamp, timeInterval, groupBy, requestPath, requestType, responseCode, chainId, apiKeyId, }: {
|
|
18
18
|
/**
|
|
19
19
|
* Organization ID to fetch usage metrics for
|
|
20
20
|
*/
|
|
@@ -36,29 +36,33 @@ declare class GlacierApiUsageMetricsService {
|
|
|
36
36
|
*/
|
|
37
37
|
groupBy?: UsageMetricsGroupByEnum;
|
|
38
38
|
/**
|
|
39
|
-
* Filter
|
|
39
|
+
* Filter data by request path.
|
|
40
40
|
*/
|
|
41
41
|
requestPath?: string;
|
|
42
42
|
/**
|
|
43
|
-
* Filter
|
|
43
|
+
* Filter data by request type.
|
|
44
44
|
*/
|
|
45
|
-
|
|
45
|
+
requestType?: 'data' | 'rpc';
|
|
46
46
|
/**
|
|
47
|
-
* Filter
|
|
47
|
+
* Filter data by response status code.
|
|
48
|
+
*/
|
|
49
|
+
responseCode?: string;
|
|
50
|
+
/**
|
|
51
|
+
* Filter data by chain ID.
|
|
48
52
|
*/
|
|
49
53
|
chainId?: string;
|
|
50
54
|
/**
|
|
51
|
-
* Filter
|
|
55
|
+
* Filter data by API key ID.
|
|
52
56
|
*/
|
|
53
57
|
apiKeyId?: string;
|
|
54
58
|
}): CancelablePromise<UsageMetricsResponseDTO>;
|
|
55
59
|
/**
|
|
56
60
|
* Get logs for requests made by client
|
|
57
61
|
* Gets logs for requests made by client over a specified time interval for a specific organization.
|
|
58
|
-
* @returns LogsResponseDTO
|
|
62
|
+
* @returns LogsResponseDTO Successful response
|
|
59
63
|
* @throws ApiError
|
|
60
64
|
*/
|
|
61
|
-
|
|
65
|
+
getApiLogs({ orgId, startTimestamp, endTimestamp, requestPath, requestType, responseCode, chainId, apiKeyId, pageToken, pageSize, }: {
|
|
62
66
|
/**
|
|
63
67
|
* Organization ID to fetch usage metrics for
|
|
64
68
|
*/
|
|
@@ -71,6 +75,26 @@ declare class GlacierApiUsageMetricsService {
|
|
|
71
75
|
* Query param for retrieving items before a specific timestamp.
|
|
72
76
|
*/
|
|
73
77
|
endTimestamp?: number;
|
|
78
|
+
/**
|
|
79
|
+
* Filter data by request path.
|
|
80
|
+
*/
|
|
81
|
+
requestPath?: string;
|
|
82
|
+
/**
|
|
83
|
+
* Filter data by request type.
|
|
84
|
+
*/
|
|
85
|
+
requestType?: 'data' | 'rpc';
|
|
86
|
+
/**
|
|
87
|
+
* Filter data by response status code.
|
|
88
|
+
*/
|
|
89
|
+
responseCode?: string;
|
|
90
|
+
/**
|
|
91
|
+
* Filter data by chain ID.
|
|
92
|
+
*/
|
|
93
|
+
chainId?: string;
|
|
94
|
+
/**
|
|
95
|
+
* Filter data by API key ID.
|
|
96
|
+
*/
|
|
97
|
+
apiKeyId?: string;
|
|
74
98
|
/**
|
|
75
99
|
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
76
100
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
class e{constructor(e){this.httpRequest=e}getApiUsageMetrics({orgId:e,startTimestamp:
|
|
1
|
+
class e{constructor(e){this.httpRequest=e}getApiUsageMetrics({orgId:e,startTimestamp:r,endTimestamp:t,timeInterval:s,groupBy:n,requestPath:a,requestType:i,responseCode:o,chainId:h,apiKeyId:d}){return this.httpRequest.request({method:"GET",url:"/v1/apiUsageMetrics",query:{orgId:e,startTimestamp:r,endTimestamp:t,timeInterval:s,groupBy:n,requestPath:a,requestType:i,responseCode:o,chainId:h,apiKeyId:d},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}getApiLogs({orgId:e,startTimestamp:r,endTimestamp:t,requestPath:s,requestType:n,responseCode:a,chainId:i,apiKeyId:o,pageToken:h,pageSize:d=10}){return this.httpRequest.request({method:"GET",url:"/v1/apiLogs",query:{orgId:e,startTimestamp:r,endTimestamp:t,requestPath:s,requestType:n,responseCode:a,chainId:i,apiKeyId:o,pageToken:h,pageSize:d},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}}export{e as GlacierApiUsageMetricsService};
|
|
@@ -9,7 +9,7 @@ declare class HealthCheckService {
|
|
|
9
9
|
* @returns any The Health Check is successful
|
|
10
10
|
* @throws ApiError
|
|
11
11
|
*/
|
|
12
|
-
|
|
12
|
+
dataHealthCheck(): CancelablePromise<{
|
|
13
13
|
status?: string;
|
|
14
14
|
info?: Record<string, Record<string, string>> | null;
|
|
15
15
|
error?: Record<string, Record<string, string>> | null;
|