@avalabs/glacier-sdk 2.8.0-canary.fdc2483.0 → 2.8.0-canary.ff11880.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 +895 -370
- package/dist/index.js +295 -22
- package/esm/generated/Glacier.d.ts +6 -0
- package/esm/generated/Glacier.js +9 -0
- package/esm/generated/models/ActiveDelegatorDetails.d.ts +7 -3
- package/esm/generated/models/ActiveDelegatorDetails.js +8 -0
- package/esm/generated/models/ActiveValidatorDetails.d.ts +14 -6
- package/esm/generated/models/ActiveValidatorDetails.js +8 -0
- package/esm/generated/models/AddressActivityMetadata.d.ts +9 -0
- package/esm/generated/models/ChainInfo.d.ts +1 -0
- package/esm/generated/models/CompletedDelegatorDetails.d.ts +7 -3
- package/esm/generated/models/CompletedDelegatorDetails.js +8 -0
- package/esm/generated/models/CompletedValidatorDetails.d.ts +9 -3
- package/esm/generated/models/CompletedValidatorDetails.js +8 -0
- package/esm/generated/models/ContractSubmissionBody.d.ts +10 -0
- package/esm/generated/models/ContractSubmissionErc1155.d.ts +31 -0
- package/esm/generated/models/ContractSubmissionErc1155.js +8 -0
- package/esm/generated/models/ContractSubmissionErc20.d.ts +31 -0
- package/esm/generated/models/ContractSubmissionErc20.js +8 -0
- package/esm/generated/models/ContractSubmissionErc721.d.ts +29 -0
- package/esm/generated/models/ContractSubmissionErc721.js +8 -0
- package/esm/generated/models/ContractSubmissionUnknown.d.ts +25 -0
- package/esm/generated/models/ContractSubmissionUnknown.js +8 -0
- package/esm/generated/models/Erc1155Contract.d.ts +2 -1
- package/esm/generated/models/Erc20Contract.d.ts +2 -1
- package/esm/generated/models/Erc721Contract.d.ts +0 -1
- package/esm/generated/models/EventType.d.ts +5 -0
- package/esm/generated/models/EventType.js +6 -0
- package/esm/generated/models/GetChainResponse.d.ts +1 -0
- package/esm/generated/models/GetPrimaryNetworkBlockResponse.d.ts +1 -0
- package/esm/generated/models/HistoricalReward.d.ts +2 -2
- package/esm/generated/models/ImageAsset.d.ts +0 -3
- package/esm/generated/models/ListContractsResponse.d.ts +1 -1
- package/esm/generated/models/ListNftTokens.d.ts +12 -0
- package/esm/generated/models/ListValidatorDetailsResponse.d.ts +1 -1
- package/esm/generated/models/ListWebhooksResponse.d.ts +11 -0
- package/esm/generated/models/PChainBalance.d.ts +7 -7
- package/esm/generated/models/PChainSharedAsset.d.ts +22 -0
- package/esm/generated/models/PChainTransaction.d.ts +5 -4
- package/esm/generated/models/PChainTransactionType.d.ts +6 -4
- package/esm/generated/models/PChainTransactionType.js +6 -4
- package/esm/generated/models/PChainUtxo.d.ts +34 -14
- package/esm/generated/models/PendingDelegatorDetails.d.ts +7 -3
- package/esm/generated/models/PendingDelegatorDetails.js +8 -0
- package/esm/generated/models/PendingReward.d.ts +2 -2
- package/esm/generated/models/PendingValidatorDetails.d.ts +9 -4
- package/esm/generated/models/PendingValidatorDetails.js +8 -0
- package/esm/generated/models/PricingProviders.d.ts +5 -0
- package/esm/generated/models/PrimaryNetworkBlock.d.ts +1 -0
- package/esm/generated/models/PrimaryNetworkTxType.d.ts +6 -4
- package/esm/generated/models/PrimaryNetworkTxType.js +6 -4
- package/esm/generated/models/RegisterWebhookRequest.d.ts +14 -0
- package/esm/generated/models/RewardType.d.ts +2 -1
- package/esm/generated/models/RewardType.js +1 -0
- package/esm/generated/models/Rewards.d.ts +2 -0
- package/esm/generated/models/SharedSecretsResponse.d.ts +5 -0
- package/esm/generated/models/UnknownContract.d.ts +0 -1
- package/esm/generated/models/UpdateContractResponse.d.ts +10 -0
- package/esm/generated/models/Utxo.d.ts +28 -28
- package/esm/generated/models/UtxoCredential.d.ts +2 -2
- package/esm/generated/models/ValidatorHealthDetails.d.ts +20 -0
- package/esm/generated/models/WebhookResponse.d.ts +15 -0
- package/esm/generated/models/WebhookStatus.d.ts +6 -0
- package/esm/generated/models/WebhookStatus.js +7 -0
- package/esm/generated/models/WebhookStatusType.d.ts +6 -0
- package/esm/generated/models/WebhookStatusType.js +7 -0
- package/esm/generated/models/XChainLinearTransaction.d.ts +2 -1
- package/esm/generated/models/XChainNonLinearTransaction.d.ts +2 -1
- package/esm/generated/models/XChainTransactionType.d.ts +10 -0
- package/esm/generated/models/XChainTransactionType.js +11 -0
- package/esm/generated/services/DefaultService.d.ts +67 -0
- package/esm/generated/services/DefaultService.js +55 -0
- package/esm/generated/services/EvmContractsService.d.ts +48 -0
- package/esm/generated/services/EvmContractsService.js +36 -0
- package/esm/generated/services/EvmTransactionsService.d.ts +42 -0
- package/esm/generated/services/EvmTransactionsService.js +1 -1
- package/esm/generated/services/NfTsService.d.ts +76 -0
- package/esm/generated/services/NfTsService.js +56 -0
- package/esm/generated/services/OperationsService.d.ts +11 -11
- package/esm/generated/services/OperationsService.js +10 -10
- package/esm/generated/services/PrimaryNetworkRewardsService.d.ts +10 -2
- package/esm/generated/services/PrimaryNetworkRewardsService.js +4 -0
- package/esm/generated/services/PrimaryNetworkService.d.ts +31 -11
- package/esm/generated/services/PrimaryNetworkService.js +17 -7
- package/esm/generated/services/PrimaryNetworkTransactionsService.d.ts +5 -1
- package/esm/index.d.ts +21 -1
- package/esm/index.js +17 -0
- package/package.json +2 -2
- package/esm/generated/models/PChainAsset.d.ts +0 -6
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
var PendingDelegatorDetails;
|
|
2
|
+
((PendingDelegatorDetails2) => {
|
|
3
|
+
((delegationStatus2) => {
|
|
4
|
+
delegationStatus2["PENDING"] = "pending";
|
|
5
|
+
})(PendingDelegatorDetails2.delegationStatus || (PendingDelegatorDetails2.delegationStatus = {}));
|
|
6
|
+
})(PendingDelegatorDetails || (PendingDelegatorDetails = {}));
|
|
7
|
+
|
|
8
|
+
export { PendingDelegatorDetails };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Asset } from './Asset.js';
|
|
2
2
|
import { RewardType } from './RewardType.js';
|
|
3
3
|
|
|
4
4
|
type PendingReward = {
|
|
@@ -16,7 +16,7 @@ type PendingReward = {
|
|
|
16
16
|
/**
|
|
17
17
|
* An object containing P-chain Asset ID and the amount of that Asset ID.
|
|
18
18
|
*/
|
|
19
|
-
estimatedReward:
|
|
19
|
+
estimatedReward: Asset;
|
|
20
20
|
};
|
|
21
21
|
|
|
22
22
|
export { PendingReward };
|
|
@@ -1,12 +1,17 @@
|
|
|
1
|
-
import { ValidationStatusType } from './ValidationStatusType.js';
|
|
2
|
-
|
|
3
1
|
type PendingValidatorDetails = {
|
|
2
|
+
txHash: string;
|
|
4
3
|
nodeId: string;
|
|
4
|
+
subnetId: string;
|
|
5
5
|
amountStaked: string;
|
|
6
|
-
delegationFee
|
|
6
|
+
delegationFee?: string;
|
|
7
7
|
startTimestamp: number;
|
|
8
8
|
endTimestamp: number;
|
|
9
|
-
validationStatus:
|
|
9
|
+
validationStatus: PendingValidatorDetails.validationStatus;
|
|
10
10
|
};
|
|
11
|
+
declare namespace PendingValidatorDetails {
|
|
12
|
+
enum validationStatus {
|
|
13
|
+
PENDING = "pending"
|
|
14
|
+
}
|
|
15
|
+
}
|
|
11
16
|
|
|
12
17
|
export { PendingValidatorDetails };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
var PendingValidatorDetails;
|
|
2
|
+
((PendingValidatorDetails2) => {
|
|
3
|
+
((validationStatus2) => {
|
|
4
|
+
validationStatus2["PENDING"] = "pending";
|
|
5
|
+
})(PendingValidatorDetails2.validationStatus || (PendingValidatorDetails2.validationStatus = {}));
|
|
6
|
+
})(PendingValidatorDetails || (PendingValidatorDetails = {}));
|
|
7
|
+
|
|
8
|
+
export { PendingValidatorDetails };
|
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
declare enum PrimaryNetworkTxType {
|
|
2
2
|
ADD_VALIDATOR_TX = "AddValidatorTx",
|
|
3
|
-
ADD_DELEGATOR_TX = "AddDelegatorTx",
|
|
4
|
-
ADD_PERMISSIONLESS_VALIDATOR_TX = "AddPermissionlessValidatorTx",
|
|
5
3
|
ADD_SUBNET_VALIDATOR_TX = "AddSubnetValidatorTx",
|
|
6
|
-
|
|
7
|
-
REWARD_VALIDATOR_TX = "RewardValidatorTx",
|
|
4
|
+
ADD_DELEGATOR_TX = "AddDelegatorTx",
|
|
8
5
|
CREATE_CHAIN_TX = "CreateChainTx",
|
|
9
6
|
CREATE_SUBNET_TX = "CreateSubnetTx",
|
|
10
7
|
IMPORT_TX = "ImportTx",
|
|
11
8
|
EXPORT_TX = "ExportTx",
|
|
12
9
|
ADVANCE_TIME_TX = "AdvanceTimeTx",
|
|
10
|
+
REWARD_VALIDATOR_TX = "RewardValidatorTx",
|
|
11
|
+
REMOVE_SUBNET_VALIDATOR_TX = "RemoveSubnetValidatorTx",
|
|
12
|
+
TRANSFORM_SUBNET_TX = "TransformSubnetTx",
|
|
13
|
+
ADD_PERMISSIONLESS_VALIDATOR_TX = "AddPermissionlessValidatorTx",
|
|
14
|
+
ADD_PERMISSIONLESS_DELEGATOR_TX = "AddPermissionlessDelegatorTx",
|
|
13
15
|
UNKNOWN = "UNKNOWN",
|
|
14
16
|
BASE_TX = "BaseTx",
|
|
15
17
|
CREATE_ASSET_TX = "CreateAssetTx",
|
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
var PrimaryNetworkTxType = /* @__PURE__ */ ((PrimaryNetworkTxType2) => {
|
|
2
2
|
PrimaryNetworkTxType2["ADD_VALIDATOR_TX"] = "AddValidatorTx";
|
|
3
|
-
PrimaryNetworkTxType2["ADD_DELEGATOR_TX"] = "AddDelegatorTx";
|
|
4
|
-
PrimaryNetworkTxType2["ADD_PERMISSIONLESS_VALIDATOR_TX"] = "AddPermissionlessValidatorTx";
|
|
5
3
|
PrimaryNetworkTxType2["ADD_SUBNET_VALIDATOR_TX"] = "AddSubnetValidatorTx";
|
|
6
|
-
PrimaryNetworkTxType2["
|
|
7
|
-
PrimaryNetworkTxType2["REWARD_VALIDATOR_TX"] = "RewardValidatorTx";
|
|
4
|
+
PrimaryNetworkTxType2["ADD_DELEGATOR_TX"] = "AddDelegatorTx";
|
|
8
5
|
PrimaryNetworkTxType2["CREATE_CHAIN_TX"] = "CreateChainTx";
|
|
9
6
|
PrimaryNetworkTxType2["CREATE_SUBNET_TX"] = "CreateSubnetTx";
|
|
10
7
|
PrimaryNetworkTxType2["IMPORT_TX"] = "ImportTx";
|
|
11
8
|
PrimaryNetworkTxType2["EXPORT_TX"] = "ExportTx";
|
|
12
9
|
PrimaryNetworkTxType2["ADVANCE_TIME_TX"] = "AdvanceTimeTx";
|
|
10
|
+
PrimaryNetworkTxType2["REWARD_VALIDATOR_TX"] = "RewardValidatorTx";
|
|
11
|
+
PrimaryNetworkTxType2["REMOVE_SUBNET_VALIDATOR_TX"] = "RemoveSubnetValidatorTx";
|
|
12
|
+
PrimaryNetworkTxType2["TRANSFORM_SUBNET_TX"] = "TransformSubnetTx";
|
|
13
|
+
PrimaryNetworkTxType2["ADD_PERMISSIONLESS_VALIDATOR_TX"] = "AddPermissionlessValidatorTx";
|
|
14
|
+
PrimaryNetworkTxType2["ADD_PERMISSIONLESS_DELEGATOR_TX"] = "AddPermissionlessDelegatorTx";
|
|
13
15
|
PrimaryNetworkTxType2["UNKNOWN"] = "UNKNOWN";
|
|
14
16
|
PrimaryNetworkTxType2["BASE_TX"] = "BaseTx";
|
|
15
17
|
PrimaryNetworkTxType2["CREATE_ASSET_TX"] = "CreateAssetTx";
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { AddressActivityMetadata } from './AddressActivityMetadata.js';
|
|
2
|
+
import { EventType } from './EventType.js';
|
|
3
|
+
|
|
4
|
+
type RegisterWebhookRequest = {
|
|
5
|
+
url: string;
|
|
6
|
+
chainId: string;
|
|
7
|
+
/**
|
|
8
|
+
* The type of event for the webhook
|
|
9
|
+
*/
|
|
10
|
+
eventType: EventType;
|
|
11
|
+
metadata: AddressActivityMetadata;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
export { RegisterWebhookRequest };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Erc1155Contract } from './Erc1155Contract.js';
|
|
2
|
+
import { Erc20Contract } from './Erc20Contract.js';
|
|
3
|
+
import { Erc721Contract } from './Erc721Contract.js';
|
|
4
|
+
import { UnknownContract } from './UnknownContract.js';
|
|
5
|
+
|
|
6
|
+
type UpdateContractResponse = {
|
|
7
|
+
contract: (UnknownContract | Erc20Contract | Erc721Contract | Erc1155Contract);
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export { UpdateContractResponse };
|
|
@@ -3,66 +3,66 @@ import { UtxoCredential } from './UtxoCredential.js';
|
|
|
3
3
|
|
|
4
4
|
type Utxo = {
|
|
5
5
|
/**
|
|
6
|
-
*
|
|
6
|
+
* Addresses that are eligible to sign the consumption of this output.
|
|
7
7
|
*/
|
|
8
|
-
|
|
8
|
+
addresses: Array<string>;
|
|
9
9
|
asset: Asset;
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* Blockchain ID on which this output is consumed on.
|
|
12
12
|
*/
|
|
13
|
-
|
|
13
|
+
consumedOnChainId: string;
|
|
14
14
|
/**
|
|
15
|
-
*
|
|
15
|
+
* Transaction ID that consumed this output.
|
|
16
16
|
*/
|
|
17
|
-
|
|
17
|
+
consumingTxHash?: string;
|
|
18
18
|
/**
|
|
19
|
-
* Blockchain ID on which this output is
|
|
19
|
+
* Blockchain ID on which this output is created on.
|
|
20
20
|
*/
|
|
21
|
-
|
|
21
|
+
createdOnChainId: string;
|
|
22
22
|
/**
|
|
23
|
-
*
|
|
23
|
+
* UTXO ID for this output.
|
|
24
24
|
*/
|
|
25
|
-
|
|
25
|
+
utxoId: string;
|
|
26
26
|
/**
|
|
27
|
-
*
|
|
27
|
+
* Unix timestamp in seconds at which this output was consumed.
|
|
28
28
|
*/
|
|
29
|
-
|
|
29
|
+
consumingTxTimestamp?: number;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* Transaction ID that created this output.
|
|
32
32
|
*/
|
|
33
|
-
|
|
33
|
+
creationTxHash: string;
|
|
34
34
|
/**
|
|
35
|
-
*
|
|
35
|
+
* Credentials that signed the transaction to consume this utxo
|
|
36
36
|
*/
|
|
37
|
-
|
|
37
|
+
credentials?: Array<UtxoCredential>;
|
|
38
38
|
/**
|
|
39
|
-
*
|
|
39
|
+
* Index representing the minting set for the NFT mint output.
|
|
40
40
|
*/
|
|
41
|
-
|
|
41
|
+
groupId?: number;
|
|
42
42
|
/**
|
|
43
43
|
* Locktime in seconds after which this output can be consumed.
|
|
44
44
|
*/
|
|
45
45
|
locktime: number;
|
|
46
46
|
/**
|
|
47
|
-
*
|
|
47
|
+
* Postion of this output in a list of lexiographically sorted outputs of a transaction.
|
|
48
48
|
*/
|
|
49
|
-
|
|
49
|
+
outputIndex: string;
|
|
50
50
|
/**
|
|
51
|
-
*
|
|
51
|
+
* Hex encoded data for NFT assets.
|
|
52
52
|
*/
|
|
53
|
-
|
|
53
|
+
payload?: string;
|
|
54
54
|
/**
|
|
55
|
-
*
|
|
55
|
+
* Minimum number of signatures required to consume this output.
|
|
56
56
|
*/
|
|
57
|
-
|
|
57
|
+
threshold: number;
|
|
58
58
|
/**
|
|
59
|
-
*
|
|
59
|
+
* Unix timestamp in seconds at which this outptut was created.
|
|
60
60
|
*/
|
|
61
|
-
|
|
61
|
+
timestamp: number;
|
|
62
62
|
/**
|
|
63
|
-
*
|
|
63
|
+
* Type of output.
|
|
64
64
|
*/
|
|
65
|
-
|
|
65
|
+
utxoType: string;
|
|
66
66
|
};
|
|
67
67
|
|
|
68
68
|
export { Utxo };
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
type UtxoCredential = {
|
|
2
2
|
/**
|
|
3
|
-
* Signature provided to consume the output
|
|
3
|
+
* Signature provided to consume the output.
|
|
4
4
|
*/
|
|
5
5
|
signature?: string;
|
|
6
6
|
/**
|
|
7
|
-
* Public key associated with the signature
|
|
7
|
+
* Public key associated with the signature.
|
|
8
8
|
*/
|
|
9
9
|
publicKey?: string;
|
|
10
10
|
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
type ValidatorHealthDetails = {
|
|
2
|
+
/**
|
|
3
|
+
* Percent of requests responded to in last polling.
|
|
4
|
+
*/
|
|
5
|
+
reachabilityPercent: number;
|
|
6
|
+
/**
|
|
7
|
+
* Percent of requests benched on the P-Chain in last polling.
|
|
8
|
+
*/
|
|
9
|
+
benchedPChainRequestsPercent: number;
|
|
10
|
+
/**
|
|
11
|
+
* Percentage of requests benched on the X-Chain in last polling.
|
|
12
|
+
*/
|
|
13
|
+
benchedXChainRequestsPercent: number;
|
|
14
|
+
/**
|
|
15
|
+
* Percentage of requests benched on the C-Chain in last polling.
|
|
16
|
+
*/
|
|
17
|
+
benchedCChainRequestsPercent: number;
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export { ValidatorHealthDetails };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { AddressActivityMetadata } from './AddressActivityMetadata.js';
|
|
2
|
+
import { EventType } from './EventType.js';
|
|
3
|
+
import { WebhookStatusType } from './WebhookStatusType.js';
|
|
4
|
+
|
|
5
|
+
type WebhookResponse = {
|
|
6
|
+
id: string;
|
|
7
|
+
eventType: EventType;
|
|
8
|
+
metadata: AddressActivityMetadata;
|
|
9
|
+
url: string;
|
|
10
|
+
chainId: string;
|
|
11
|
+
status: WebhookStatusType;
|
|
12
|
+
createdAt: number;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export { WebhookResponse };
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Asset } from './Asset.js';
|
|
2
2
|
import { Utxo } from './Utxo.js';
|
|
3
3
|
import { XChainAssetDetails } from './XChainAssetDetails.js';
|
|
4
|
+
import { XChainTransactionType } from './XChainTransactionType.js';
|
|
4
5
|
|
|
5
6
|
type XChainLinearTransaction = {
|
|
6
7
|
/**
|
|
@@ -18,7 +19,7 @@ type XChainLinearTransaction = {
|
|
|
18
19
|
/**
|
|
19
20
|
* Type of transaction.
|
|
20
21
|
*/
|
|
21
|
-
txType:
|
|
22
|
+
txType: XChainTransactionType;
|
|
22
23
|
/**
|
|
23
24
|
* Hex encoded memo bytes for this transaction.
|
|
24
25
|
*/
|
|
@@ -2,6 +2,7 @@ import { Asset } from './Asset.js';
|
|
|
2
2
|
import { TransactionVertexDetail } from './TransactionVertexDetail.js';
|
|
3
3
|
import { Utxo } from './Utxo.js';
|
|
4
4
|
import { XChainAssetDetails } from './XChainAssetDetails.js';
|
|
5
|
+
import { XChainTransactionType } from './XChainTransactionType.js';
|
|
5
6
|
|
|
6
7
|
type XChainNonLinearTransaction = {
|
|
7
8
|
/**
|
|
@@ -19,7 +20,7 @@ type XChainNonLinearTransaction = {
|
|
|
19
20
|
/**
|
|
20
21
|
* Type of transaction.
|
|
21
22
|
*/
|
|
22
|
-
txType:
|
|
23
|
+
txType: XChainTransactionType;
|
|
23
24
|
/**
|
|
24
25
|
* Hex encoded memo bytes for this transaction.
|
|
25
26
|
*/
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
var XChainTransactionType = /* @__PURE__ */ ((XChainTransactionType2) => {
|
|
2
|
+
XChainTransactionType2["BASE_TX"] = "BaseTx";
|
|
3
|
+
XChainTransactionType2["CREATE_ASSET_TX"] = "CreateAssetTx";
|
|
4
|
+
XChainTransactionType2["OPERATION_TX"] = "OperationTx";
|
|
5
|
+
XChainTransactionType2["IMPORT_TX"] = "ImportTx";
|
|
6
|
+
XChainTransactionType2["EXPORT_TX"] = "ExportTx";
|
|
7
|
+
XChainTransactionType2["UNKNOWN"] = "UNKNOWN";
|
|
8
|
+
return XChainTransactionType2;
|
|
9
|
+
})(XChainTransactionType || {});
|
|
10
|
+
|
|
11
|
+
export { XChainTransactionType };
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { ListWebhooksResponse } from '../models/ListWebhooksResponse.js';
|
|
2
|
+
import { RegisterWebhookRequest } from '../models/RegisterWebhookRequest.js';
|
|
3
|
+
import { SharedSecretsResponse } from '../models/SharedSecretsResponse.js';
|
|
4
|
+
import { WebhookResponse } from '../models/WebhookResponse.js';
|
|
5
|
+
import { WebhookStatus } from '../models/WebhookStatus.js';
|
|
6
|
+
import { CancelablePromise } from '../core/CancelablePromise.js';
|
|
7
|
+
import { BaseHttpRequest } from '../core/BaseHttpRequest.js';
|
|
8
|
+
|
|
9
|
+
declare class DefaultService {
|
|
10
|
+
readonly httpRequest: BaseHttpRequest;
|
|
11
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
12
|
+
/**
|
|
13
|
+
* @returns any
|
|
14
|
+
* @throws ApiError
|
|
15
|
+
*/
|
|
16
|
+
mediaControllerUploadImage(): CancelablePromise<any>;
|
|
17
|
+
/**
|
|
18
|
+
* Register a webhook
|
|
19
|
+
* Registers a new webhook.
|
|
20
|
+
* @returns WebhookResponse
|
|
21
|
+
* @throws ApiError
|
|
22
|
+
*/
|
|
23
|
+
registerWebhook({ requestBody, }: {
|
|
24
|
+
requestBody: RegisterWebhookRequest;
|
|
25
|
+
}): CancelablePromise<WebhookResponse>;
|
|
26
|
+
/**
|
|
27
|
+
* List webhooks
|
|
28
|
+
* Lists webhooks for the user.
|
|
29
|
+
* @returns ListWebhooksResponse
|
|
30
|
+
* @throws ApiError
|
|
31
|
+
*/
|
|
32
|
+
listWebhooks({ pageSize, pageToken, status, }: {
|
|
33
|
+
/**
|
|
34
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
35
|
+
*/
|
|
36
|
+
pageSize?: number;
|
|
37
|
+
/**
|
|
38
|
+
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
39
|
+
*/
|
|
40
|
+
pageToken?: string;
|
|
41
|
+
/**
|
|
42
|
+
* Status of the webhook. Use "active" to return only active webhooks, "inactive" to return only inactive webhooks. Else if no status is provided, all configured webhooks will be returned.
|
|
43
|
+
*/
|
|
44
|
+
status?: WebhookStatus;
|
|
45
|
+
}): CancelablePromise<ListWebhooksResponse>;
|
|
46
|
+
/**
|
|
47
|
+
* Deactivate a webhook
|
|
48
|
+
* Deactivates a webhook by ID.
|
|
49
|
+
* @returns WebhookResponse
|
|
50
|
+
* @throws ApiError
|
|
51
|
+
*/
|
|
52
|
+
deactivateWebhook({ id, }: {
|
|
53
|
+
/**
|
|
54
|
+
* The webhook identifier.
|
|
55
|
+
*/
|
|
56
|
+
id: string;
|
|
57
|
+
}): CancelablePromise<WebhookResponse>;
|
|
58
|
+
/**
|
|
59
|
+
* Generate a shared secret
|
|
60
|
+
* Generates a new shared secret.
|
|
61
|
+
* @returns SharedSecretsResponse
|
|
62
|
+
* @throws ApiError
|
|
63
|
+
*/
|
|
64
|
+
generateSharedSecret(): CancelablePromise<SharedSecretsResponse>;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export { DefaultService };
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
class DefaultService {
|
|
2
|
+
constructor(httpRequest) {
|
|
3
|
+
this.httpRequest = httpRequest;
|
|
4
|
+
}
|
|
5
|
+
mediaControllerUploadImage() {
|
|
6
|
+
return this.httpRequest.request({
|
|
7
|
+
method: "POST",
|
|
8
|
+
url: "/v1/media/uploadImage"
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
registerWebhook({
|
|
12
|
+
requestBody
|
|
13
|
+
}) {
|
|
14
|
+
return this.httpRequest.request({
|
|
15
|
+
method: "POST",
|
|
16
|
+
url: "/v1/webhooks",
|
|
17
|
+
body: requestBody,
|
|
18
|
+
mediaType: "application/json"
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
listWebhooks({
|
|
22
|
+
pageSize = 10,
|
|
23
|
+
pageToken,
|
|
24
|
+
status
|
|
25
|
+
}) {
|
|
26
|
+
return this.httpRequest.request({
|
|
27
|
+
method: "GET",
|
|
28
|
+
url: "/v1/webhooks",
|
|
29
|
+
query: {
|
|
30
|
+
"pageSize": pageSize,
|
|
31
|
+
"pageToken": pageToken,
|
|
32
|
+
"status": status
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
deactivateWebhook({
|
|
37
|
+
id
|
|
38
|
+
}) {
|
|
39
|
+
return this.httpRequest.request({
|
|
40
|
+
method: "DELETE",
|
|
41
|
+
url: "/v1/webhooks/{id}",
|
|
42
|
+
path: {
|
|
43
|
+
"id": id
|
|
44
|
+
}
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
generateSharedSecret() {
|
|
48
|
+
return this.httpRequest.request({
|
|
49
|
+
method: "POST",
|
|
50
|
+
url: "/v1/webhooks:generateSharedSecret"
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export { DefaultService };
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { ContractSubmissionBody } from '../models/ContractSubmissionBody.js';
|
|
2
|
+
import { Erc1155Contract } from '../models/Erc1155Contract.js';
|
|
3
|
+
import { Erc20Contract } from '../models/Erc20Contract.js';
|
|
4
|
+
import { Erc721Contract } from '../models/Erc721Contract.js';
|
|
5
|
+
import { UnknownContract } from '../models/UnknownContract.js';
|
|
6
|
+
import { UpdateContractResponse } from '../models/UpdateContractResponse.js';
|
|
7
|
+
import { CancelablePromise } from '../core/CancelablePromise.js';
|
|
8
|
+
import { BaseHttpRequest } from '../core/BaseHttpRequest.js';
|
|
9
|
+
|
|
10
|
+
declare class EvmContractsService {
|
|
11
|
+
readonly httpRequest: BaseHttpRequest;
|
|
12
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
13
|
+
/**
|
|
14
|
+
* Get contract metadata
|
|
15
|
+
* Gets metadata about the contract at the given address.
|
|
16
|
+
* @returns any
|
|
17
|
+
* @throws ApiError
|
|
18
|
+
*/
|
|
19
|
+
getContractMetadata({ chainId, address, }: {
|
|
20
|
+
/**
|
|
21
|
+
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
22
|
+
*/
|
|
23
|
+
chainId: string;
|
|
24
|
+
/**
|
|
25
|
+
* Contract address on the relevant chain.
|
|
26
|
+
*/
|
|
27
|
+
address: string;
|
|
28
|
+
}): CancelablePromise<(Erc721Contract | Erc1155Contract | Erc20Contract | UnknownContract)>;
|
|
29
|
+
/**
|
|
30
|
+
* Update contract information
|
|
31
|
+
* Update contract information. Updates will be reviewed by the Ava Labs team before they are published.
|
|
32
|
+
* @returns UpdateContractResponse
|
|
33
|
+
* @throws ApiError
|
|
34
|
+
*/
|
|
35
|
+
updateContractInfo({ chainId, address, requestBody, }: {
|
|
36
|
+
/**
|
|
37
|
+
* A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
38
|
+
*/
|
|
39
|
+
chainId: string;
|
|
40
|
+
/**
|
|
41
|
+
* Contract address on the relevant chain.
|
|
42
|
+
*/
|
|
43
|
+
address: string;
|
|
44
|
+
requestBody: ContractSubmissionBody;
|
|
45
|
+
}): CancelablePromise<UpdateContractResponse>;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export { EvmContractsService };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
class EvmContractsService {
|
|
2
|
+
constructor(httpRequest) {
|
|
3
|
+
this.httpRequest = httpRequest;
|
|
4
|
+
}
|
|
5
|
+
getContractMetadata({
|
|
6
|
+
chainId,
|
|
7
|
+
address
|
|
8
|
+
}) {
|
|
9
|
+
return this.httpRequest.request({
|
|
10
|
+
method: "GET",
|
|
11
|
+
url: "/v1/chains/{chainId}/addresses/{address}",
|
|
12
|
+
path: {
|
|
13
|
+
"chainId": chainId,
|
|
14
|
+
"address": address
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
updateContractInfo({
|
|
19
|
+
chainId,
|
|
20
|
+
address,
|
|
21
|
+
requestBody
|
|
22
|
+
}) {
|
|
23
|
+
return this.httpRequest.request({
|
|
24
|
+
method: "PATCH",
|
|
25
|
+
url: "/v1/chains/{chainId}/contracts/{address}",
|
|
26
|
+
path: {
|
|
27
|
+
"chainId": chainId,
|
|
28
|
+
"address": address
|
|
29
|
+
},
|
|
30
|
+
body: requestBody,
|
|
31
|
+
mediaType: "application/json"
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export { EvmContractsService };
|