@avalabs/glacier-sdk 2.8.0-canary.f2340be.0 → 2.8.0-canary.f3e3bdc.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 +202 -156
- package/dist/index.js +155 -108
- package/esm/generated/Glacier.d.ts +2 -0
- package/esm/generated/Glacier.js +3 -0
- package/esm/generated/core/CancelablePromise.d.ts +2 -8
- package/esm/generated/core/CancelablePromise.js +41 -36
- package/esm/generated/core/OpenAPI.d.ts +5 -5
- package/esm/generated/core/request.js +25 -9
- package/esm/generated/models/AddressActivityMetadata.d.ts +0 -8
- package/esm/generated/models/PrimaryNetworkOptions.d.ts +1 -1
- package/esm/generated/models/RegisterWebhookRequest.d.ts +8 -0
- package/esm/generated/models/RpcErrorDto.d.ts +7 -0
- package/esm/generated/models/RpcErrorResponseDto.d.ts +9 -0
- package/esm/generated/models/RpcRequestBodyDto.d.ts +8 -0
- package/esm/generated/models/RpcSuccessResponseDto.d.ts +7 -0
- package/esm/generated/models/UpdateWebhookRequest.d.ts +1 -1
- package/esm/generated/models/WebhookResponse.d.ts +8 -0
- package/esm/generated/services/DefaultService.d.ts +11 -81
- package/esm/generated/services/DefaultService.js +8 -64
- package/esm/generated/services/PrimaryNetworkService.d.ts +1 -1
- package/esm/generated/services/WebhooksService.d.ts +95 -0
- package/esm/generated/services/WebhooksService.js +80 -0
- package/esm/index.d.ts +5 -0
- package/esm/index.js +1 -0
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -23,15 +23,9 @@ interface OnCancel {
|
|
|
23
23
|
(cancelHandler: () => void): void;
|
|
24
24
|
}
|
|
25
25
|
declare class CancelablePromise<T> implements Promise<T> {
|
|
26
|
-
|
|
27
|
-
private _isResolved;
|
|
28
|
-
private _isRejected;
|
|
29
|
-
private _isCancelled;
|
|
30
|
-
private readonly _cancelHandlers;
|
|
31
|
-
private readonly _promise;
|
|
32
|
-
private _resolve?;
|
|
33
|
-
private _reject?;
|
|
26
|
+
#private;
|
|
34
27
|
constructor(executor: (resolve: (value: T | PromiseLike<T>) => void, reject: (reason?: any) => void, onCancel: OnCancel) => void);
|
|
28
|
+
get [Symbol.toStringTag](): string;
|
|
35
29
|
then<TResult1 = T, TResult2 = never>(onFulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | null, onRejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | null): Promise<TResult1 | TResult2>;
|
|
36
30
|
catch<TResult = never>(onRejected?: ((reason: any) => TResult | PromiseLike<TResult>) | null): Promise<T | TResult>;
|
|
37
31
|
finally(onFinally?: (() => void) | null): Promise<T>;
|
|
@@ -46,11 +40,11 @@ type OpenAPIConfig = {
|
|
|
46
40
|
VERSION: string;
|
|
47
41
|
WITH_CREDENTIALS: boolean;
|
|
48
42
|
CREDENTIALS: 'include' | 'omit' | 'same-origin';
|
|
49
|
-
TOKEN?: string | Resolver<string
|
|
50
|
-
USERNAME?: string | Resolver<string
|
|
51
|
-
PASSWORD?: string | Resolver<string
|
|
52
|
-
HEADERS?: Headers | Resolver<Headers
|
|
53
|
-
ENCODE_PATH?: (path: string) => string;
|
|
43
|
+
TOKEN?: string | Resolver<string> | undefined;
|
|
44
|
+
USERNAME?: string | Resolver<string> | undefined;
|
|
45
|
+
PASSWORD?: string | Resolver<string> | undefined;
|
|
46
|
+
HEADERS?: Headers | Resolver<Headers> | undefined;
|
|
47
|
+
ENCODE_PATH?: ((path: string) => string) | undefined;
|
|
54
48
|
};
|
|
55
49
|
declare const OpenAPI: OpenAPIConfig;
|
|
56
50
|
|
|
@@ -60,79 +54,31 @@ declare abstract class BaseHttpRequest {
|
|
|
60
54
|
abstract request<T>(options: ApiRequestOptions): CancelablePromise<T>;
|
|
61
55
|
}
|
|
62
56
|
|
|
63
|
-
type
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
address: string;
|
|
68
|
-
/**
|
|
69
|
-
* Array of hexadecimal strings of the event signatures.
|
|
70
|
-
*/
|
|
71
|
-
eventSignatures?: Array<string>;
|
|
72
|
-
/**
|
|
73
|
-
* Whether to include traces in the webhook payload.
|
|
74
|
-
*/
|
|
75
|
-
includeTraces?: boolean;
|
|
76
|
-
/**
|
|
77
|
-
* Whether to include logs in the webhook payload.
|
|
78
|
-
*/
|
|
79
|
-
includeLogs?: boolean;
|
|
80
|
-
};
|
|
81
|
-
|
|
82
|
-
declare enum EventType {
|
|
83
|
-
ADDRESS_ACTIVITY = "address_activity"
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
declare enum WebhookStatusType {
|
|
87
|
-
ACTIVE = "active",
|
|
88
|
-
INACTIVE = "inactive"
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
type WebhookResponse = {
|
|
92
|
-
id: string;
|
|
93
|
-
eventType: EventType;
|
|
94
|
-
metadata: AddressActivityMetadata;
|
|
95
|
-
url: string;
|
|
96
|
-
chainId: string;
|
|
97
|
-
status: WebhookStatusType;
|
|
98
|
-
createdAt: number;
|
|
99
|
-
name: string;
|
|
100
|
-
description: string;
|
|
101
|
-
};
|
|
102
|
-
|
|
103
|
-
type ListWebhooksResponse = {
|
|
104
|
-
/**
|
|
105
|
-
* A token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted or empty, there are no subsequent pages.
|
|
106
|
-
*/
|
|
107
|
-
nextPageToken?: string;
|
|
108
|
-
webhooks: Array<WebhookResponse>;
|
|
57
|
+
type RpcErrorDto = {
|
|
58
|
+
code: number;
|
|
59
|
+
message: string;
|
|
60
|
+
data?: Record<string, any>;
|
|
109
61
|
};
|
|
110
62
|
|
|
111
|
-
type
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
metadata: AddressActivityMetadata;
|
|
63
|
+
type RpcErrorResponseDto = {
|
|
64
|
+
jsonrpc: string;
|
|
65
|
+
id?: (string | number);
|
|
66
|
+
error: RpcErrorDto;
|
|
116
67
|
};
|
|
117
68
|
|
|
118
|
-
type
|
|
119
|
-
|
|
69
|
+
type RpcRequestBodyDto = {
|
|
70
|
+
method: string;
|
|
71
|
+
params?: Record<string, any>;
|
|
72
|
+
id?: (string | number);
|
|
73
|
+
jsonrpc?: string;
|
|
120
74
|
};
|
|
121
75
|
|
|
122
|
-
type
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
status?: WebhookStatusType;
|
|
127
|
-
includeTraces?: boolean;
|
|
128
|
-
includeLogs?: boolean;
|
|
76
|
+
type RpcSuccessResponseDto = {
|
|
77
|
+
jsonrpc: string;
|
|
78
|
+
id?: (string | number);
|
|
79
|
+
result: Record<string, any>;
|
|
129
80
|
};
|
|
130
81
|
|
|
131
|
-
declare enum WebhookStatus {
|
|
132
|
-
ACTIVE = "active",
|
|
133
|
-
INACTIVE = "inactive"
|
|
134
|
-
}
|
|
135
|
-
|
|
136
82
|
declare class DefaultService {
|
|
137
83
|
readonly httpRequest: BaseHttpRequest;
|
|
138
84
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -142,85 +88,18 @@ declare class DefaultService {
|
|
|
142
88
|
*/
|
|
143
89
|
mediaControllerUploadImage(): CancelablePromise<any>;
|
|
144
90
|
/**
|
|
145
|
-
*
|
|
146
|
-
*
|
|
147
|
-
* @returns
|
|
148
|
-
* @throws ApiError
|
|
149
|
-
*/
|
|
150
|
-
registerWebhook({ requestBody, }: {
|
|
151
|
-
requestBody: RegisterWebhookRequest;
|
|
152
|
-
}): CancelablePromise<WebhookResponse>;
|
|
153
|
-
/**
|
|
154
|
-
* List webhooks
|
|
155
|
-
* Lists webhooks for the user.
|
|
156
|
-
* @returns ListWebhooksResponse
|
|
157
|
-
* @throws ApiError
|
|
158
|
-
*/
|
|
159
|
-
listWebhooks({ pageToken, pageSize, status, }: {
|
|
160
|
-
/**
|
|
161
|
-
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
162
|
-
*/
|
|
163
|
-
pageToken?: string;
|
|
164
|
-
/**
|
|
165
|
-
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
166
|
-
*/
|
|
167
|
-
pageSize?: number;
|
|
168
|
-
/**
|
|
169
|
-
* 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.
|
|
170
|
-
*/
|
|
171
|
-
status?: WebhookStatus;
|
|
172
|
-
}): CancelablePromise<ListWebhooksResponse>;
|
|
173
|
-
/**
|
|
174
|
-
* Get a webhook by ID
|
|
175
|
-
* Retrieves a webhook by ID.
|
|
176
|
-
* @returns WebhookResponse
|
|
177
|
-
* @throws ApiError
|
|
178
|
-
*/
|
|
179
|
-
getWebhook({ id, }: {
|
|
180
|
-
/**
|
|
181
|
-
* The webhook identifier.
|
|
182
|
-
*/
|
|
183
|
-
id: string;
|
|
184
|
-
}): CancelablePromise<WebhookResponse>;
|
|
185
|
-
/**
|
|
186
|
-
* Deactivate a webhook
|
|
187
|
-
* Deactivates a webhook by ID.
|
|
188
|
-
* @returns WebhookResponse
|
|
189
|
-
* @throws ApiError
|
|
190
|
-
*/
|
|
191
|
-
deactivateWebhook({ id, }: {
|
|
192
|
-
/**
|
|
193
|
-
* The webhook identifier.
|
|
194
|
-
*/
|
|
195
|
-
id: string;
|
|
196
|
-
}): CancelablePromise<WebhookResponse>;
|
|
197
|
-
/**
|
|
198
|
-
* Update a webhook
|
|
199
|
-
* Updates an existing webhook.
|
|
200
|
-
* @returns WebhookResponse
|
|
91
|
+
* Calls JSON-RPC method
|
|
92
|
+
* Calls JSON-RPC method.
|
|
93
|
+
* @returns any
|
|
201
94
|
* @throws ApiError
|
|
202
95
|
*/
|
|
203
|
-
|
|
96
|
+
rpc({ chainId, requestBody, }: {
|
|
204
97
|
/**
|
|
205
|
-
*
|
|
98
|
+
* A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
206
99
|
*/
|
|
207
|
-
|
|
208
|
-
requestBody:
|
|
209
|
-
}): CancelablePromise<
|
|
210
|
-
/**
|
|
211
|
-
* Generate a shared secret
|
|
212
|
-
* Generates a new shared secret.
|
|
213
|
-
* @returns SharedSecretsResponse
|
|
214
|
-
* @throws ApiError
|
|
215
|
-
*/
|
|
216
|
-
generateSharedSecret(): CancelablePromise<SharedSecretsResponse>;
|
|
217
|
-
/**
|
|
218
|
-
* Get a shared secret
|
|
219
|
-
* Get a previously generated shared secret.
|
|
220
|
-
* @returns SharedSecretsResponse
|
|
221
|
-
* @throws ApiError
|
|
222
|
-
*/
|
|
223
|
-
getSharedSecret(): CancelablePromise<SharedSecretsResponse>;
|
|
100
|
+
chainId: string;
|
|
101
|
+
requestBody: (RpcRequestBodyDto | Array<RpcRequestBodyDto>);
|
|
102
|
+
}): CancelablePromise<(RpcSuccessResponseDto | RpcErrorResponseDto)>;
|
|
224
103
|
}
|
|
225
104
|
|
|
226
105
|
/**
|
|
@@ -2193,7 +2072,7 @@ declare enum PrimaryNetworkOperationType {
|
|
|
2193
2072
|
}
|
|
2194
2073
|
|
|
2195
2074
|
type PrimaryNetworkOptions = {
|
|
2196
|
-
addresses
|
|
2075
|
+
addresses?: Array<string>;
|
|
2197
2076
|
cChainEvmAddresses?: Array<string>;
|
|
2198
2077
|
includeChains: Array<'11111111111111111111111111111111LpoYY' | '2oYMBNV4eNHyqk2fjjV5nVQLDbtmNJzq5s3qs3Lo6ftnC6FByM' | '2JVSBoinj9C2J33VntvzYtVJNZdN2NKiwwKjcumHUWEb5DbBrm' | '2q9e4r6Mu3U68nU1fYjgbR6JvwrRx36CohpAX5UQxse55x1Q5' | 'yH8D7ThNJkxmtkuv2jgBa4P1Rn3Qpr4pPr7QYNfcdoS6k6HWp' | 'p-chain' | 'x-chain' | 'c-chain'>;
|
|
2199
2078
|
};
|
|
@@ -2794,7 +2673,7 @@ declare class PrimaryNetworkService {
|
|
|
2794
2673
|
/**
|
|
2795
2674
|
* The subnet ID to filter by. If not provided, then all subnets will be returned.
|
|
2796
2675
|
*/
|
|
2797
|
-
subnetId?:
|
|
2676
|
+
subnetId?: any;
|
|
2798
2677
|
}): CancelablePromise<ListValidatorDetailsResponse>;
|
|
2799
2678
|
/**
|
|
2800
2679
|
* Get single validator details
|
|
@@ -4437,6 +4316,172 @@ declare class TeleporterService {
|
|
|
4437
4316
|
}): CancelablePromise<NextPageToken>;
|
|
4438
4317
|
}
|
|
4439
4318
|
|
|
4319
|
+
type AddressActivityMetadata = {
|
|
4320
|
+
/**
|
|
4321
|
+
* Ethereum address for the address_activity event type
|
|
4322
|
+
*/
|
|
4323
|
+
address: string;
|
|
4324
|
+
/**
|
|
4325
|
+
* Array of hexadecimal strings of the event signatures.
|
|
4326
|
+
*/
|
|
4327
|
+
eventSignatures?: Array<string>;
|
|
4328
|
+
};
|
|
4329
|
+
|
|
4330
|
+
declare enum EventType {
|
|
4331
|
+
ADDRESS_ACTIVITY = "address_activity"
|
|
4332
|
+
}
|
|
4333
|
+
|
|
4334
|
+
declare enum WebhookStatusType {
|
|
4335
|
+
ACTIVE = "active",
|
|
4336
|
+
INACTIVE = "inactive"
|
|
4337
|
+
}
|
|
4338
|
+
|
|
4339
|
+
type WebhookResponse = {
|
|
4340
|
+
id: string;
|
|
4341
|
+
eventType: EventType;
|
|
4342
|
+
metadata: AddressActivityMetadata;
|
|
4343
|
+
/**
|
|
4344
|
+
* Whether to include traces in the webhook payload.
|
|
4345
|
+
*/
|
|
4346
|
+
includeInternalTxs?: boolean;
|
|
4347
|
+
/**
|
|
4348
|
+
* Whether to include logs in the webhook payload.
|
|
4349
|
+
*/
|
|
4350
|
+
includeLogs?: boolean;
|
|
4351
|
+
url: string;
|
|
4352
|
+
chainId: string;
|
|
4353
|
+
status: WebhookStatusType;
|
|
4354
|
+
createdAt: number;
|
|
4355
|
+
name: string;
|
|
4356
|
+
description: string;
|
|
4357
|
+
};
|
|
4358
|
+
|
|
4359
|
+
type ListWebhooksResponse = {
|
|
4360
|
+
/**
|
|
4361
|
+
* A token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted or empty, there are no subsequent pages.
|
|
4362
|
+
*/
|
|
4363
|
+
nextPageToken?: string;
|
|
4364
|
+
webhooks: Array<WebhookResponse>;
|
|
4365
|
+
};
|
|
4366
|
+
|
|
4367
|
+
type RegisterWebhookRequest = {
|
|
4368
|
+
url: string;
|
|
4369
|
+
chainId: string;
|
|
4370
|
+
eventType: EventType;
|
|
4371
|
+
metadata: AddressActivityMetadata;
|
|
4372
|
+
/**
|
|
4373
|
+
* Whether to include traces in the webhook payload.
|
|
4374
|
+
*/
|
|
4375
|
+
includeInternalTxs?: boolean;
|
|
4376
|
+
/**
|
|
4377
|
+
* Whether to include logs in the webhook payload.
|
|
4378
|
+
*/
|
|
4379
|
+
includeLogs?: boolean;
|
|
4380
|
+
};
|
|
4381
|
+
|
|
4382
|
+
type SharedSecretsResponse = {
|
|
4383
|
+
secret: string;
|
|
4384
|
+
};
|
|
4385
|
+
|
|
4386
|
+
type UpdateWebhookRequest = {
|
|
4387
|
+
name?: string;
|
|
4388
|
+
description?: string;
|
|
4389
|
+
url?: string;
|
|
4390
|
+
status?: WebhookStatusType;
|
|
4391
|
+
includeInternalTxs?: boolean;
|
|
4392
|
+
includeLogs?: boolean;
|
|
4393
|
+
};
|
|
4394
|
+
|
|
4395
|
+
declare enum WebhookStatus {
|
|
4396
|
+
ACTIVE = "active",
|
|
4397
|
+
INACTIVE = "inactive"
|
|
4398
|
+
}
|
|
4399
|
+
|
|
4400
|
+
declare class WebhooksService {
|
|
4401
|
+
readonly httpRequest: BaseHttpRequest;
|
|
4402
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
4403
|
+
/**
|
|
4404
|
+
* Register a webhook
|
|
4405
|
+
* Registers a new webhook.
|
|
4406
|
+
* @returns WebhookResponse
|
|
4407
|
+
* @throws ApiError
|
|
4408
|
+
*/
|
|
4409
|
+
registerWebhook({ requestBody, }: {
|
|
4410
|
+
requestBody: RegisterWebhookRequest;
|
|
4411
|
+
}): CancelablePromise<WebhookResponse>;
|
|
4412
|
+
/**
|
|
4413
|
+
* List webhooks
|
|
4414
|
+
* Lists webhooks for the user.
|
|
4415
|
+
* @returns ListWebhooksResponse
|
|
4416
|
+
* @throws ApiError
|
|
4417
|
+
*/
|
|
4418
|
+
listWebhooks({ pageToken, pageSize, status, }: {
|
|
4419
|
+
/**
|
|
4420
|
+
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
4421
|
+
*/
|
|
4422
|
+
pageToken?: string;
|
|
4423
|
+
/**
|
|
4424
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
4425
|
+
*/
|
|
4426
|
+
pageSize?: number;
|
|
4427
|
+
/**
|
|
4428
|
+
* 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.
|
|
4429
|
+
*/
|
|
4430
|
+
status?: WebhookStatus;
|
|
4431
|
+
}): CancelablePromise<ListWebhooksResponse>;
|
|
4432
|
+
/**
|
|
4433
|
+
* Get a webhook by ID
|
|
4434
|
+
* Retrieves a webhook by ID.
|
|
4435
|
+
* @returns WebhookResponse
|
|
4436
|
+
* @throws ApiError
|
|
4437
|
+
*/
|
|
4438
|
+
getWebhook({ id, }: {
|
|
4439
|
+
/**
|
|
4440
|
+
* The webhook identifier.
|
|
4441
|
+
*/
|
|
4442
|
+
id: string;
|
|
4443
|
+
}): CancelablePromise<WebhookResponse>;
|
|
4444
|
+
/**
|
|
4445
|
+
* Deactivate a webhook
|
|
4446
|
+
* Deactivates a webhook by ID.
|
|
4447
|
+
* @returns WebhookResponse
|
|
4448
|
+
* @throws ApiError
|
|
4449
|
+
*/
|
|
4450
|
+
deactivateWebhook({ id, }: {
|
|
4451
|
+
/**
|
|
4452
|
+
* The webhook identifier.
|
|
4453
|
+
*/
|
|
4454
|
+
id: string;
|
|
4455
|
+
}): CancelablePromise<WebhookResponse>;
|
|
4456
|
+
/**
|
|
4457
|
+
* Update a webhook
|
|
4458
|
+
* Updates an existing webhook.
|
|
4459
|
+
* @returns WebhookResponse
|
|
4460
|
+
* @throws ApiError
|
|
4461
|
+
*/
|
|
4462
|
+
updateWebhook({ id, requestBody, }: {
|
|
4463
|
+
/**
|
|
4464
|
+
* The webhook identifier.
|
|
4465
|
+
*/
|
|
4466
|
+
id: string;
|
|
4467
|
+
requestBody: UpdateWebhookRequest;
|
|
4468
|
+
}): CancelablePromise<WebhookResponse>;
|
|
4469
|
+
/**
|
|
4470
|
+
* Generate a shared secret
|
|
4471
|
+
* Generates a new shared secret.
|
|
4472
|
+
* @returns SharedSecretsResponse
|
|
4473
|
+
* @throws ApiError
|
|
4474
|
+
*/
|
|
4475
|
+
generateSharedSecret(): CancelablePromise<SharedSecretsResponse>;
|
|
4476
|
+
/**
|
|
4477
|
+
* Get a shared secret
|
|
4478
|
+
* Get a previously generated shared secret.
|
|
4479
|
+
* @returns SharedSecretsResponse
|
|
4480
|
+
* @throws ApiError
|
|
4481
|
+
*/
|
|
4482
|
+
getSharedSecret(): CancelablePromise<SharedSecretsResponse>;
|
|
4483
|
+
}
|
|
4484
|
+
|
|
4440
4485
|
type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
|
|
4441
4486
|
declare class Glacier {
|
|
4442
4487
|
readonly default: DefaultService;
|
|
@@ -4456,6 +4501,7 @@ declare class Glacier {
|
|
|
4456
4501
|
readonly primaryNetworkUtxOs: PrimaryNetworkUtxOsService;
|
|
4457
4502
|
readonly primaryNetworkVertices: PrimaryNetworkVerticesService;
|
|
4458
4503
|
readonly teleporter: TeleporterService;
|
|
4504
|
+
readonly webhooks: WebhooksService;
|
|
4459
4505
|
readonly request: BaseHttpRequest;
|
|
4460
4506
|
constructor(config?: Partial<OpenAPIConfig>, HttpRequest?: HttpRequestConstructor);
|
|
4461
4507
|
}
|
|
@@ -4477,4 +4523,4 @@ declare class ApiError extends Error {
|
|
|
4477
4523
|
constructor(request: ApiRequestOptions, response: ApiResult, message: string);
|
|
4478
4524
|
}
|
|
4479
4525
|
|
|
4480
|
-
export { ActiveDelegatorDetails, ActiveValidatorDetails, AddressActivityMetadata, AggregatedAssetAmount, ApiError, AssetAmount, AssetWithPriceInfo, BaseHttpRequest, Blockchain, BlockchainId, BlockchainIds, BlockchainInfo, CChainAtomicBalances, CChainExportTransaction, CChainImportTransaction, CChainSharedAssetBalance, CancelError, CancelablePromise, ChainAddressChainIdMap, ChainAddressChainIdMapListResponse, ChainInfo, ChainStatus, CompletedDelegatorDetails, CompletedValidatorDetails, ContractDeploymentDetails, ContractSubmissionBody, ContractSubmissionErc1155, ContractSubmissionErc20, ContractSubmissionErc721, ContractSubmissionUnknown, CreateEvmTransactionExportRequest, CreatePrimaryNetworkTransactionExportRequest, CurrencyCode, DefaultService, DelegationStatusType, DelegatorsDetails, DeliveredSourceNotIndexedTeleporterMessage, DeliveredTeleporterMessage, EVMInput, EVMOperationType, EVMOutput, Erc1155Contract, Erc1155Token, Erc1155TokenBalance, Erc1155TokenMetadata, Erc1155Transfer, Erc1155TransferDetails, Erc20Contract, Erc20Token, Erc20TokenBalance, Erc20Transfer, Erc20TransferDetails, Erc721Contract, Erc721Token, Erc721TokenBalance, Erc721TokenMetadata, Erc721Transfer, Erc721TransferDetails, EventType, EvmBalancesService, EvmBlock, EvmBlocksService, EvmChainsService, EvmContractsService, EvmNetworkOptions, EvmTransactionsService, FullNativeTransactionDetails, GetChainResponse, GetEvmBlockResponse, GetNativeBalanceResponse, GetNetworkDetailsResponse, GetPrimaryNetworkBlockResponse, GetTransactionResponse, Glacier, GlacierApiFeature, HealthCheckService, HistoricalReward, ImageAsset, InternalTransaction, InternalTransactionDetails, InternalTransactionOpCall, ListBlockchainsResponse, ListCChainAtomicBalancesResponse, ListCChainAtomicTransactionsResponse, ListChainsResponse, ListCollectibleBalancesResponse, ListContractsResponse, ListDelegatorDetailsResponse, ListErc1155BalancesResponse, ListErc1155TransactionsResponse, ListErc20BalancesResponse, ListErc20TransactionsResponse, ListErc721BalancesResponse, ListErc721TransactionsResponse, ListEvmBlocksResponse, ListHistoricalRewardsResponse, ListInternalTransactionsResponse, ListNativeTransactionsResponse, ListNftTokens, ListPChainBalancesResponse, ListPChainTransactionsResponse, ListPChainUtxosResponse, ListPendingRewardsResponse, ListPrimaryNetworkBlocksResponse, ListSubnetsResponse, ListTransactionDetailsResponse, ListTransfersResponse, ListUtxosResponse, ListValidatorDetailsResponse, ListWebhooksResponse, ListXChainBalancesResponse, ListXChainTransactionsResponse, ListXChainVerticesResponse, Method, Money, NativeTokenBalance, NativeTransaction, Network, NetworkToken, NetworkTokenDetails, NetworkType, NextPageToken, NfTsService, NftTokenMetadataStatus, OpenAPI, OpenAPIConfig, OperationStatus, OperationStatusCode, OperationStatusResponse, OperationType, OperationsService, PChainBalance, PChainId, PChainSharedAsset, PChainTransaction, PChainTransactionType, PChainUtxo, PendingDelegatorDetails, PendingReward, PendingTeleporterMessage, PendingValidatorDetails, PricingProviders, PrimaryNetwork, PrimaryNetworkAssetCap, PrimaryNetworkAssetType, PrimaryNetworkBalancesService, PrimaryNetworkBlock, PrimaryNetworkBlocksService, PrimaryNetworkChainInfo, PrimaryNetworkChainName, PrimaryNetworkOperationType, PrimaryNetworkOptions, PrimaryNetworkRewardsService, PrimaryNetworkService, PrimaryNetworkTransactionsService, PrimaryNetworkTxType, PrimaryNetworkUtxOsService, PrimaryNetworkVerticesService, ProposerDetails, RegisterWebhookRequest, RemovedValidatorDetails, ResourceLink, ResourceLinkType, RewardType, Rewards, RichAddress, SharedSecretsResponse, SortOrder, StakingDistribution, Subnet, SubnetOwnershipInfo, TeleporterDestinationTransaction, TeleporterReceipt, TeleporterRewardDetails, TeleporterService, TeleporterSourceTransaction, TransactionDetails, TransactionExportMetadata, TransactionMethodType, TransactionStatus, TransactionVertexDetail, UnknownContract, UpdateContractResponse, UpdateWebhookRequest, UtilityAddresses, Utxo, UtxoCredential, UtxoType, ValidationStatusType, ValidatorHealthDetails, ValidatorsDetails, VmName, WebhookResponse, WebhookStatus, WebhookStatusType, XChainAssetDetails, XChainBalances, XChainId, XChainLinearTransaction, XChainNonLinearTransaction, XChainSharedAssetBalance, XChainTransactionType, XChainVertex };
|
|
4526
|
+
export { ActiveDelegatorDetails, ActiveValidatorDetails, AddressActivityMetadata, AggregatedAssetAmount, ApiError, AssetAmount, AssetWithPriceInfo, BaseHttpRequest, Blockchain, BlockchainId, BlockchainIds, BlockchainInfo, CChainAtomicBalances, CChainExportTransaction, CChainImportTransaction, CChainSharedAssetBalance, CancelError, CancelablePromise, ChainAddressChainIdMap, ChainAddressChainIdMapListResponse, ChainInfo, ChainStatus, CompletedDelegatorDetails, CompletedValidatorDetails, ContractDeploymentDetails, ContractSubmissionBody, ContractSubmissionErc1155, ContractSubmissionErc20, ContractSubmissionErc721, ContractSubmissionUnknown, CreateEvmTransactionExportRequest, CreatePrimaryNetworkTransactionExportRequest, CurrencyCode, DefaultService, DelegationStatusType, DelegatorsDetails, DeliveredSourceNotIndexedTeleporterMessage, DeliveredTeleporterMessage, EVMInput, EVMOperationType, EVMOutput, Erc1155Contract, Erc1155Token, Erc1155TokenBalance, Erc1155TokenMetadata, Erc1155Transfer, Erc1155TransferDetails, Erc20Contract, Erc20Token, Erc20TokenBalance, Erc20Transfer, Erc20TransferDetails, Erc721Contract, Erc721Token, Erc721TokenBalance, Erc721TokenMetadata, Erc721Transfer, Erc721TransferDetails, EventType, EvmBalancesService, EvmBlock, EvmBlocksService, EvmChainsService, EvmContractsService, EvmNetworkOptions, EvmTransactionsService, FullNativeTransactionDetails, GetChainResponse, GetEvmBlockResponse, GetNativeBalanceResponse, GetNetworkDetailsResponse, GetPrimaryNetworkBlockResponse, GetTransactionResponse, Glacier, GlacierApiFeature, HealthCheckService, HistoricalReward, ImageAsset, InternalTransaction, InternalTransactionDetails, InternalTransactionOpCall, ListBlockchainsResponse, ListCChainAtomicBalancesResponse, ListCChainAtomicTransactionsResponse, ListChainsResponse, ListCollectibleBalancesResponse, ListContractsResponse, ListDelegatorDetailsResponse, ListErc1155BalancesResponse, ListErc1155TransactionsResponse, ListErc20BalancesResponse, ListErc20TransactionsResponse, ListErc721BalancesResponse, ListErc721TransactionsResponse, ListEvmBlocksResponse, ListHistoricalRewardsResponse, ListInternalTransactionsResponse, ListNativeTransactionsResponse, ListNftTokens, ListPChainBalancesResponse, ListPChainTransactionsResponse, ListPChainUtxosResponse, ListPendingRewardsResponse, ListPrimaryNetworkBlocksResponse, ListSubnetsResponse, ListTransactionDetailsResponse, ListTransfersResponse, ListUtxosResponse, ListValidatorDetailsResponse, ListWebhooksResponse, ListXChainBalancesResponse, ListXChainTransactionsResponse, ListXChainVerticesResponse, Method, Money, NativeTokenBalance, NativeTransaction, Network, NetworkToken, NetworkTokenDetails, NetworkType, NextPageToken, NfTsService, NftTokenMetadataStatus, OpenAPI, OpenAPIConfig, OperationStatus, OperationStatusCode, OperationStatusResponse, OperationType, OperationsService, PChainBalance, PChainId, PChainSharedAsset, PChainTransaction, PChainTransactionType, PChainUtxo, PendingDelegatorDetails, PendingReward, PendingTeleporterMessage, PendingValidatorDetails, PricingProviders, PrimaryNetwork, PrimaryNetworkAssetCap, PrimaryNetworkAssetType, PrimaryNetworkBalancesService, PrimaryNetworkBlock, PrimaryNetworkBlocksService, PrimaryNetworkChainInfo, PrimaryNetworkChainName, PrimaryNetworkOperationType, PrimaryNetworkOptions, PrimaryNetworkRewardsService, PrimaryNetworkService, PrimaryNetworkTransactionsService, PrimaryNetworkTxType, PrimaryNetworkUtxOsService, PrimaryNetworkVerticesService, ProposerDetails, RegisterWebhookRequest, RemovedValidatorDetails, ResourceLink, ResourceLinkType, RewardType, Rewards, RichAddress, RpcErrorDto, RpcErrorResponseDto, RpcRequestBodyDto, RpcSuccessResponseDto, SharedSecretsResponse, SortOrder, StakingDistribution, Subnet, SubnetOwnershipInfo, TeleporterDestinationTransaction, TeleporterReceipt, TeleporterRewardDetails, TeleporterService, TeleporterSourceTransaction, TransactionDetails, TransactionExportMetadata, TransactionMethodType, TransactionStatus, TransactionVertexDetail, UnknownContract, UpdateContractResponse, UpdateWebhookRequest, UtilityAddresses, Utxo, UtxoCredential, UtxoType, ValidationStatusType, ValidatorHealthDetails, ValidatorsDetails, VmName, WebhookResponse, WebhookStatus, WebhookStatusType, WebhooksService, XChainAssetDetails, XChainBalances, XChainId, XChainLinearTransaction, XChainNonLinearTransaction, XChainSharedAssetBalance, XChainTransactionType, XChainVertex };
|