@avalabs/glacier-sdk 3.1.0-canary.d896622.0 → 3.1.0-canary.dab255e.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.
@@ -0,0 +1,6 @@
1
+ type BalanceOwner = {
2
+ addresses: Array<string>;
3
+ threshold: number;
4
+ };
5
+
6
+ export { BalanceOwner };
@@ -0,0 +1,6 @@
1
+ type L1ValidatorManagerDetails = {
2
+ blockchainId: string;
3
+ contractAddress: string;
4
+ };
5
+
6
+ export { L1ValidatorManagerDetails };
@@ -0,0 +1,14 @@
1
+ import { SovDetailsFull } from './SovDetailsFull.js';
2
+
3
+ type ListSubnetOnlyValidatorsResponse = {
4
+ /**
5
+ * 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.
6
+ */
7
+ nextPageToken?: string;
8
+ /**
9
+ * The list of L1 validations for the given Subnet ID, NodeId or validationId
10
+ */
11
+ validators: Array<SovDetailsFull>;
12
+ };
13
+
14
+ export { ListSubnetOnlyValidatorsResponse };
@@ -1,9 +1,10 @@
1
1
  import { AssetAmount } from './AssetAmount.js';
2
2
  import { BlsCredentials } from './BlsCredentials.js';
3
+ import { L1ValidatorManagerDetails } from './L1ValidatorManagerDetails.js';
3
4
  import { PChainTransactionType } from './PChainTransactionType.js';
4
5
  import { PChainUtxo } from './PChainUtxo.js';
6
+ import { SoVDetailsTransaction } from './SoVDetailsTransaction.js';
5
7
  import { SubnetOwnershipInfo } from './SubnetOwnershipInfo.js';
6
- import { SubnetValidatorManagerDetails } from './SubnetValidatorManagerDetails.js';
7
8
 
8
9
  type PChainTransaction = {
9
10
  /**
@@ -64,13 +65,13 @@ type PChainTransaction = {
64
65
  */
65
66
  subnetId?: string;
66
67
  /**
67
- * Present for ConvertSubnetTx
68
+ * Details of the L1's validator manager contract and blockchain. Present for the ConvertSubnetTx which transforms a subnet into L1
68
69
  */
69
- subnetValidatorManagerDetails?: SubnetValidatorManagerDetails;
70
+ l1ValidatorManagerDetails?: L1ValidatorManagerDetails;
70
71
  /**
71
- * Present for ConvertSubnetTx, RegisterSubnetValidatorTx
72
+ * Details of Subnet-only-Validators registered or changed in the current transaction. The details reflect the state at the time of the transaction, not in real-time
72
73
  */
73
- subnetOnlyValidatorDetails?: Array<string>;
74
+ l1ValidatorDetails?: Array<SoVDetailsTransaction>;
74
75
  /**
75
76
  * Present for AddValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
76
77
  */
@@ -0,0 +1,23 @@
1
+ type SoVDetailsTransaction = {
2
+ /**
3
+ * Unique SoV ID used network-wide to identify subnet-only validation until its weight is reduced to 0 i.e. removed.
4
+ */
5
+ validationId: string;
6
+ nodeId: string;
7
+ subnetId: string;
8
+ /**
9
+ * Weight of the SoV used while sampling validators within the L1. A zero-weight SoV means it has been removed from the L1, and the validationID is no longer valid
10
+ */
11
+ weight: number;
12
+ /**
13
+ * Remaining SoV balance in nAVAX until inactive. It can rejoin subnet sampling by increasing balance with IncreaseBalanceTx
14
+ */
15
+ remainingBalance: number;
16
+ /**
17
+ * The increase in SoV balance in the current transaction. When the balance is returned after the SoV is disabled or removed, this value is negative
18
+ */
19
+ balanceChange?: number;
20
+ blsCredentials?: Record<string, any>;
21
+ };
22
+
23
+ export { SoVDetailsTransaction };
@@ -0,0 +1,33 @@
1
+ import { BalanceOwner } from './BalanceOwner.js';
2
+
3
+ type SovDetailsFull = {
4
+ /**
5
+ * Unique SoV ID used network-wide to identify subnet-only validation until its weight is reduced to 0 i.e. removed.
6
+ */
7
+ validationId: string;
8
+ nodeId: string;
9
+ subnetId: string;
10
+ /**
11
+ * Weight of the SoV used while sampling validators within the L1. A zero-weight SoV means it has been removed from the L1, and the validationID is no longer valid
12
+ */
13
+ weight: number;
14
+ /**
15
+ * Remaining SoV balance in nAVAX until inactive. It can rejoin subnet sampling by increasing balance with IncreaseBalanceTx
16
+ */
17
+ remainingBalance: number;
18
+ /**
19
+ * The timestamp of the transaction which created this SoV
20
+ */
21
+ creationTimestamp: number;
22
+ blsCredentials: Record<string, any>;
23
+ /**
24
+ * The SoV owner's balance, returned after it's disabled or removed
25
+ */
26
+ remainingBalanceOwner: BalanceOwner;
27
+ /**
28
+ * Owner ddresses details which can disable or remove the SoV
29
+ */
30
+ deactivationOwner: BalanceOwner;
31
+ };
32
+
33
+ export { SovDetailsFull };
@@ -1,4 +1,5 @@
1
1
  import { BlockchainInfo } from './BlockchainInfo.js';
2
+ import { L1ValidatorManagerDetails } from './L1ValidatorManagerDetails.js';
2
3
  import { SubnetOwnershipInfo } from './SubnetOwnershipInfo.js';
3
4
 
4
5
  type Subnet = {
@@ -24,6 +25,14 @@ type Subnet = {
24
25
  * Latest subnet owner details for this Subnet.
25
26
  */
26
27
  subnetOwnershipInfo: SubnetOwnershipInfo;
28
+ /**
29
+ * Whether the subnet is an L1 or not.
30
+ */
31
+ isL1: boolean;
32
+ /**
33
+ * L1 validator manager details.
34
+ */
35
+ l1ValidatorManagerDetails?: L1ValidatorManagerDetails;
27
36
  blockchains: Array<BlockchainInfo>;
28
37
  };
29
38
 
@@ -3,6 +3,7 @@ import { DelegationStatusType } from '../models/DelegationStatusType.js';
3
3
  import { GetNetworkDetailsResponse } from '../models/GetNetworkDetailsResponse.js';
4
4
  import { ListBlockchainsResponse } from '../models/ListBlockchainsResponse.js';
5
5
  import { ListDelegatorDetailsResponse } from '../models/ListDelegatorDetailsResponse.js';
6
+ import { ListSubnetOnlyValidatorsResponse } from '../models/ListSubnetOnlyValidatorsResponse.js';
6
7
  import { ListSubnetsResponse } from '../models/ListSubnetsResponse.js';
7
8
  import { ListValidatorDetailsResponse } from '../models/ListValidatorDetailsResponse.js';
8
9
  import { Network } from '../models/Network.js';
@@ -275,7 +276,7 @@ declare class PrimaryNetworkService {
275
276
  /**
276
277
  * List subnet-only validators
277
278
  * Lists details for subnet only validators. By default, returns details for all active subnet only validators. Filterable by validator node ids, subnet id, and validation id.
278
- * @returns ListValidatorDetailsResponse Successful response
279
+ * @returns ListSubnetOnlyValidatorsResponse Successful response
279
280
  * @throws ApiError
280
281
  */
281
282
  listSubnetOnlyValidators({ network, pageToken, pageSize, sovValidationId, includeInactiveSovs, nodeId, subnetId, }: {
@@ -304,7 +305,7 @@ declare class PrimaryNetworkService {
304
305
  * The subnet ID to filter by. If not provided, then all subnets will be returned.
305
306
  */
306
307
  subnetId?: any;
307
- }): CancelablePromise<ListValidatorDetailsResponse>;
308
+ }): CancelablePromise<ListSubnetOnlyValidatorsResponse>;
308
309
  }
309
310
 
310
311
  export { PrimaryNetworkService };
@@ -44,11 +44,13 @@ declare class PrimaryNetworkTransactionsService {
44
44
  *
45
45
  * Transactions are filterable by addresses, txTypes, and timestamps. When querying for latest transactions without an address parameter, filtering by txTypes and timestamps is not supported. An address filter must be provided to utilize txTypes and timestamp filters.
46
46
  *
47
+ * For P-Chain, you can fetch all the Subnet-only-Validator (SoV) related transactions like ConvertSubnetTx, IncreaseBalanceTx etc. using the unique SoV validation ID. These transactions are further filterable by txTypes and timestamps as well.
48
+ *
47
49
  * Given that each transaction may return a large number of UTXO objects, bounded only by the maximum transaction size, the query may return less transactions than the provided page size. The result will contain less results than the page size if the number of utxos contained in the resulting transactions reach a performance threshold.
48
50
  * @returns any Successful response
49
51
  * @throws ApiError
50
52
  */
51
- listLatestPrimaryNetworkTransactions({ blockchainId, network, addresses, txTypes, startTimestamp, endTimestamp, pageToken, pageSize, sortOrder, }: {
53
+ listLatestPrimaryNetworkTransactions({ blockchainId, network, addresses, sovValidationId, txTypes, startTimestamp, endTimestamp, pageToken, pageSize, sortOrder, }: {
52
54
  /**
53
55
  * A primary network blockchain id or alias.
54
56
  */
@@ -61,6 +63,7 @@ declare class PrimaryNetworkTransactionsService {
61
63
  * A comma separated list of X-Chain or P-Chain wallet addresses, starting with "avax"/"fuji", "P-avax"/"P-fuji" or "X-avax"/"X-fuji". Also accepts EVM formatted addresses starting with "0x" for C-Chain-related atomic transaction lookups.
62
64
  */
63
65
  addresses?: string;
66
+ sovValidationId?: string;
64
67
  /**
65
68
  * Query param for filtering items based on transaction types.
66
69
  */
@@ -1 +1 @@
1
- class e{constructor(e){this.httpRequest=e}getTxByHash({blockchainId:e,network:t,txHash:r}){return this.httpRequest.request({method:"GET",url:"/v1/networks/{network}/blockchains/{blockchainId}/transactions/{txHash}",path:{blockchainId:e,network:t,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."}})}listLatestPrimaryNetworkTransactions({blockchainId:e,network:t,addresses:r,txTypes:s,startTimestamp:n,endTimestamp:a,pageToken:i,pageSize:o=10,sortOrder:h}){return this.httpRequest.request({method:"GET",url:"/v1/networks/{network}/blockchains/{blockchainId}/transactions",path:{blockchainId:e,network:t},query:{addresses:r,txTypes:s,startTimestamp:n,endTimestamp:a,pageToken:i,pageSize:o,sortOrder:h},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."}})}listActivePrimaryNetworkStakingTransactions({blockchainId:e,network:t,addresses:r,txTypes:s,startTimestamp:n,endTimestamp:a,pageToken:i,pageSize:o=10,sortOrder:h}){return this.httpRequest.request({method:"GET",url:"/v1/networks/{network}/blockchains/{blockchainId}/transactions:listStaking",path:{blockchainId:e,network:t},query:{addresses:r,txTypes:s,startTimestamp:n,endTimestamp:a,pageToken:i,pageSize:o,sortOrder:h},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."}})}listAssetTransactions({blockchainId:e,network:t,assetId:r,txTypes:s,startTimestamp:n,endTimestamp:a,pageToken:i,pageSize:o=10}){return this.httpRequest.request({method:"GET",url:"/v1/networks/{network}/blockchains/{blockchainId}/assets/{assetId}/transactions",path:{blockchainId:e,network:t,assetId:r},query:{txTypes:s,startTimestamp:n,endTimestamp:a,pageToken:i,pageSize: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."}})}}export{e as PrimaryNetworkTransactionsService};
1
+ class e{constructor(e){this.httpRequest=e}getTxByHash({blockchainId:e,network:t,txHash:r}){return this.httpRequest.request({method:"GET",url:"/v1/networks/{network}/blockchains/{blockchainId}/transactions/{txHash}",path:{blockchainId:e,network:t,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."}})}listLatestPrimaryNetworkTransactions({blockchainId:e,network:t,addresses:r,sovValidationId:s,txTypes:n,startTimestamp:a,endTimestamp:i,pageToken:o,pageSize:h=10,sortOrder:d}){return this.httpRequest.request({method:"GET",url:"/v1/networks/{network}/blockchains/{blockchainId}/transactions",path:{blockchainId:e,network:t},query:{addresses:r,sovValidationId:s,txTypes:n,startTimestamp:a,endTimestamp:i,pageToken:o,pageSize:h,sortOrder: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."}})}listActivePrimaryNetworkStakingTransactions({blockchainId:e,network:t,addresses:r,txTypes:s,startTimestamp:n,endTimestamp:a,pageToken:i,pageSize:o=10,sortOrder:h}){return this.httpRequest.request({method:"GET",url:"/v1/networks/{network}/blockchains/{blockchainId}/transactions:listStaking",path:{blockchainId:e,network:t},query:{addresses:r,txTypes:s,startTimestamp:n,endTimestamp:a,pageToken:i,pageSize:o,sortOrder:h},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."}})}listAssetTransactions({blockchainId:e,network:t,assetId:r,txTypes:s,startTimestamp:n,endTimestamp:a,pageToken:i,pageSize:o=10}){return this.httpRequest.request({method:"GET",url:"/v1/networks/{network}/blockchains/{blockchainId}/assets/{assetId}/transactions",path:{blockchainId:e,network:t,assetId:r},query:{txTypes:s,startTimestamp:n,endTimestamp:a,pageToken:i,pageSize: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."}})}}export{e as PrimaryNetworkTransactionsService};
package/esm/index.d.ts CHANGED
@@ -13,6 +13,7 @@ export { AssetAmount } from './generated/models/AssetAmount.js';
13
13
  export { AssetWithPriceInfo } from './generated/models/AssetWithPriceInfo.js';
14
14
  export { BadGateway } from './generated/models/BadGateway.js';
15
15
  export { BadRequest } from './generated/models/BadRequest.js';
16
+ export { BalanceOwner } from './generated/models/BalanceOwner.js';
16
17
  export { Blockchain } from './generated/models/Blockchain.js';
17
18
  export { BlockchainId } from './generated/models/BlockchainId.js';
18
19
  export { BlockchainIds } from './generated/models/BlockchainIds.js';
@@ -80,6 +81,7 @@ export { InternalServerError } from './generated/models/InternalServerError.js';
80
81
  export { InternalTransaction } from './generated/models/InternalTransaction.js';
81
82
  export { InternalTransactionDetails } from './generated/models/InternalTransactionDetails.js';
82
83
  export { InternalTransactionOpCall } from './generated/models/InternalTransactionOpCall.js';
84
+ export { L1ValidatorManagerDetails } from './generated/models/L1ValidatorManagerDetails.js';
83
85
  export { ListAddressChainsResponse } from './generated/models/ListAddressChainsResponse.js';
84
86
  export { ListBlockchainsResponse } from './generated/models/ListBlockchainsResponse.js';
85
87
  export { ListCChainAtomicBalancesResponse } from './generated/models/ListCChainAtomicBalancesResponse.js';
@@ -104,6 +106,7 @@ export { ListPChainTransactionsResponse } from './generated/models/ListPChainTra
104
106
  export { ListPChainUtxosResponse } from './generated/models/ListPChainUtxosResponse.js';
105
107
  export { ListPendingRewardsResponse } from './generated/models/ListPendingRewardsResponse.js';
106
108
  export { ListPrimaryNetworkBlocksResponse } from './generated/models/ListPrimaryNetworkBlocksResponse.js';
109
+ export { ListSubnetOnlyValidatorsResponse } from './generated/models/ListSubnetOnlyValidatorsResponse.js';
107
110
  export { ListSubnetsResponse } from './generated/models/ListSubnetsResponse.js';
108
111
  export { ListTeleporterMessagesResponse } from './generated/models/ListTeleporterMessagesResponse.js';
109
112
  export { ListTransactionDetailsResponse } from './generated/models/ListTransactionDetailsResponse.js';
@@ -169,10 +172,11 @@ export { SignatureAggregationResponse } from './generated/models/SignatureAggreg
169
172
  export { SignatureAggregatorRequest } from './generated/models/SignatureAggregatorRequest.js';
170
173
  export { SortByOption } from './generated/models/SortByOption.js';
171
174
  export { SortOrder } from './generated/models/SortOrder.js';
175
+ export { SovDetailsFull } from './generated/models/SovDetailsFull.js';
176
+ export { SoVDetailsTransaction } from './generated/models/SoVDetailsTransaction.js';
172
177
  export { StakingDistribution } from './generated/models/StakingDistribution.js';
173
178
  export { Subnet } from './generated/models/Subnet.js';
174
179
  export { SubnetOwnershipInfo } from './generated/models/SubnetOwnershipInfo.js';
175
- export { SubnetValidatorManagerDetails } from './generated/models/SubnetValidatorManagerDetails.js';
176
180
  export { TeleporterDestinationTransaction } from './generated/models/TeleporterDestinationTransaction.js';
177
181
  export { TeleporterMessageInfo } from './generated/models/TeleporterMessageInfo.js';
178
182
  export { TeleporterReceipt } from './generated/models/TeleporterReceipt.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@avalabs/glacier-sdk",
3
- "version": "3.1.0-canary.d896622.0+d896622",
3
+ "version": "3.1.0-canary.dab255e.0+dab255e",
4
4
  "description": "sdk for interacting with glacier-api",
5
5
  "author": "Oliver Wang <oliver.wang@avalabs.org>",
6
6
  "homepage": "https://github.com/ava-labs/avalanche-sdks#readme",
@@ -29,5 +29,5 @@
29
29
  "bugs": {
30
30
  "url": "https://github.com/ava-labs/avalanche-sdks/issues"
31
31
  },
32
- "gitHead": "d896622b232307af743568699ddcde94159168ef"
32
+ "gitHead": "dab255e0b599752d0ee0b5cc11ffba9763103957"
33
33
  }
@@ -1,6 +0,0 @@
1
- type SubnetValidatorManagerDetails = {
2
- blockchainId: string;
3
- evmContractAddress: string;
4
- };
5
-
6
- export { SubnetValidatorManagerDetails };