@avalabs/glacier-sdk 2.8.0-alpha.107 → 2.8.0-alpha.109

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.
Files changed (49) hide show
  1. package/dist/index.d.ts +487 -361
  2. package/dist/index.js +192 -163
  3. package/esm/generated/models/BlockchainIds.d.ts +9 -0
  4. package/esm/generated/models/BlockchainIds.js +10 -0
  5. package/esm/generated/models/ChainAddressChainIdMap.d.ts +2 -2
  6. package/esm/generated/models/CollectionMetrics.d.ts +1 -2
  7. package/esm/generated/models/EVMInput.d.ts +5 -0
  8. package/esm/generated/models/Erc1155Transfer.d.ts +1 -0
  9. package/esm/generated/models/Erc1155TransferDetails.d.ts +1 -0
  10. package/esm/generated/models/Erc20Transfer.d.ts +1 -0
  11. package/esm/generated/models/Erc20TransferDetails.d.ts +1 -0
  12. package/esm/generated/models/Erc721Transfer.d.ts +1 -0
  13. package/esm/generated/models/Erc721TransferDetails.d.ts +1 -0
  14. package/esm/generated/models/{GetBlockResponse.d.ts → EvmBlock.d.ts} +2 -6
  15. package/esm/generated/models/FloorPrice.d.ts +2 -0
  16. package/esm/generated/models/GetEvmBlockResponse.d.ts +45 -0
  17. package/esm/generated/models/GetPrimaryNetworkBlockResponse.d.ts +15 -0
  18. package/esm/generated/models/ListCChainAtomicBalancesResponse.d.ts +2 -0
  19. package/esm/generated/models/ListCChainAtomicTransactionsResponse.d.ts +2 -0
  20. package/esm/generated/models/{ListBlocksResponse.d.ts → ListEvmBlocksResponse.d.ts} +4 -4
  21. package/esm/generated/models/ListPChainBalancesResponse.d.ts +2 -0
  22. package/esm/generated/models/ListPChainTransactionsResponse.d.ts +2 -0
  23. package/esm/generated/models/ListPChainUtxosResponse.d.ts +2 -0
  24. package/esm/generated/models/ListPrimaryNetworkBlocksResponse.d.ts +13 -0
  25. package/esm/generated/models/ListUtxosResponse.d.ts +2 -0
  26. package/esm/generated/models/ListXChainBalancesResponse.d.ts +2 -0
  27. package/esm/generated/models/ListXChainTransactionsResponse.d.ts +2 -0
  28. package/esm/generated/models/ListXChainVerticesResponse.d.ts +2 -0
  29. package/esm/generated/models/PChainBalance.d.ts +6 -6
  30. package/esm/generated/models/PChainTransaction.d.ts +3 -3
  31. package/esm/generated/models/PChainUtxo.d.ts +4 -0
  32. package/esm/generated/models/PrimaryNetwork.d.ts +6 -0
  33. package/esm/generated/models/PrimaryNetwork.js +7 -0
  34. package/esm/generated/models/{Block.d.ts → PrimaryNetworkBlock.d.ts} +2 -2
  35. package/esm/generated/models/PrimaryNetworkChainInfo.d.ts +9 -0
  36. package/esm/generated/models/PrimaryNetworkChainName.d.ts +7 -0
  37. package/esm/generated/models/PrimaryNetworkChainName.js +8 -0
  38. package/esm/generated/models/Utxo.d.ts +9 -1
  39. package/esm/generated/models/XChainLinearTransaction.d.ts +4 -4
  40. package/esm/generated/models/XChainLinearTransaction.js +1 -1
  41. package/esm/generated/models/XChainNonLinearTransaction.d.ts +4 -4
  42. package/esm/generated/models/XChainNonLinearTransaction.js +1 -1
  43. package/esm/generated/services/EvmService.d.ts +244 -240
  44. package/esm/generated/services/EvmService.js +163 -161
  45. package/esm/generated/services/PrimaryNetworkService.d.ts +14 -9
  46. package/esm/generated/services/PrimaryNetworkService.js +2 -0
  47. package/esm/index.d.ts +10 -3
  48. package/esm/index.js +3 -0
  49. package/package.json +2 -2
@@ -20,6 +20,7 @@ type Erc1155Transfer = {
20
20
  txHash: string;
21
21
  from: RichAddress;
22
22
  to: RichAddress;
23
+ logIndex: number;
23
24
  value: string;
24
25
  erc1155Token: Erc1155Token;
25
26
  };
@@ -4,6 +4,7 @@ import { RichAddress } from './RichAddress.js';
4
4
  type Erc1155TransferDetails = {
5
5
  from: RichAddress;
6
6
  to: RichAddress;
7
+ logIndex: number;
7
8
  value: string;
8
9
  erc1155Token: Erc1155Token;
9
10
  };
@@ -20,6 +20,7 @@ type Erc20Transfer = {
20
20
  txHash: string;
21
21
  from: RichAddress;
22
22
  to: RichAddress;
23
+ logIndex: number;
23
24
  value: string;
24
25
  erc20Token: Erc20Token;
25
26
  };
@@ -4,6 +4,7 @@ import { RichAddress } from './RichAddress.js';
4
4
  type Erc20TransferDetails = {
5
5
  from: RichAddress;
6
6
  to: RichAddress;
7
+ logIndex: number;
7
8
  value: string;
8
9
  erc20Token: Erc20Token;
9
10
  };
@@ -20,6 +20,7 @@ type Erc721Transfer = {
20
20
  txHash: string;
21
21
  from: RichAddress;
22
22
  to: RichAddress;
23
+ logIndex: number;
23
24
  erc721Token: Erc721Token;
24
25
  };
25
26
 
@@ -4,6 +4,7 @@ import { RichAddress } from './RichAddress.js';
4
4
  type Erc721TransferDetails = {
5
5
  from: RichAddress;
6
6
  to: RichAddress;
7
+ logIndex: number;
7
8
  erc721Token: Erc721Token;
8
9
  };
9
10
 
@@ -1,4 +1,4 @@
1
- type GetBlockResponse = {
1
+ type EvmBlock = {
2
2
  /**
3
3
  * The block number on the chain.
4
4
  */
@@ -15,10 +15,6 @@ type GetBlockResponse = {
15
15
  * The number of evm transactions in the block.
16
16
  */
17
17
  txCount: number;
18
- /**
19
- * The number of atomic transactions in the block.
20
- */
21
- atomicTxCount: number;
22
18
  /**
23
19
  * The base gas fee for a transaction to be included in the block.
24
20
  */
@@ -46,4 +42,4 @@ type GetBlockResponse = {
46
42
  cumulativeTransactions: string;
47
43
  };
48
44
 
49
- export { GetBlockResponse };
45
+ export { EvmBlock };
@@ -1,6 +1,8 @@
1
1
  type FloorPrice = {
2
2
  floorPrice: string;
3
3
  marketplace: string;
4
+ listingIds: Array<string>;
5
+ isOverallFloorPrice: boolean;
4
6
  };
5
7
 
6
8
  export { FloorPrice };
@@ -0,0 +1,45 @@
1
+ type GetEvmBlockResponse = {
2
+ /**
3
+ * The block number on the chain.
4
+ */
5
+ blockNumber: string;
6
+ /**
7
+ * The block finality timestamp.
8
+ */
9
+ blockTimestamp: number;
10
+ /**
11
+ * The block hash identifier.
12
+ */
13
+ blockHash: string;
14
+ /**
15
+ * The number of evm transactions in the block.
16
+ */
17
+ txCount: number;
18
+ /**
19
+ * The base gas fee for a transaction to be included in the block.
20
+ */
21
+ baseFee: string;
22
+ /**
23
+ * The gas used for transactions in the block.
24
+ */
25
+ gasUsed: string;
26
+ /**
27
+ * The total gas limit set for transactions in the block.
28
+ */
29
+ gasLimit: string;
30
+ gasCost: string;
31
+ /**
32
+ * The hash of the parent block.
33
+ */
34
+ parentHash: string;
35
+ /**
36
+ * The amount of fees spent/burned for transactions in the block.
37
+ */
38
+ feesSpent: string;
39
+ /**
40
+ * The cumulative number of transactions for the chain including this block.
41
+ */
42
+ cumulativeTransactions: string;
43
+ };
44
+
45
+ export { GetEvmBlockResponse };
@@ -0,0 +1,15 @@
1
+ import { ProposerDetails } from './ProposerDetails.js';
2
+
3
+ type GetPrimaryNetworkBlockResponse = {
4
+ blockNumber: string;
5
+ blockHash: string;
6
+ parentHash: string;
7
+ blockTimestamp: number;
8
+ blockType: string;
9
+ txCount: number;
10
+ transactions: Array<string>;
11
+ blockSizeBytes: number;
12
+ proposerDetails?: ProposerDetails;
13
+ };
14
+
15
+ export { GetPrimaryNetworkBlockResponse };
@@ -1,7 +1,9 @@
1
1
  import { CChainAtomicBalances } from './CChainAtomicBalances.js';
2
+ import { PrimaryNetworkChainInfo } from './PrimaryNetworkChainInfo.js';
2
3
 
3
4
  type ListCChainAtomicBalancesResponse = {
4
5
  balances: CChainAtomicBalances;
6
+ chainInfo: PrimaryNetworkChainInfo;
5
7
  };
6
8
 
7
9
  export { ListCChainAtomicBalancesResponse };
@@ -1,5 +1,6 @@
1
1
  import { CChainExportTransaction } from './CChainExportTransaction.js';
2
2
  import { CChainImportTransaction } from './CChainImportTransaction.js';
3
+ import { PrimaryNetworkChainInfo } from './PrimaryNetworkChainInfo.js';
3
4
 
4
5
  type ListCChainAtomicTransactionsResponse = {
5
6
  /**
@@ -7,6 +8,7 @@ type ListCChainAtomicTransactionsResponse = {
7
8
  */
8
9
  nextPageToken?: string;
9
10
  transactions: Array<(CChainExportTransaction | CChainImportTransaction)>;
11
+ chainInfo: PrimaryNetworkChainInfo;
10
12
  };
11
13
 
12
14
  export { ListCChainAtomicTransactionsResponse };
@@ -1,11 +1,11 @@
1
- import { Block } from './Block.js';
1
+ import { EvmBlock } from './EvmBlock.js';
2
2
 
3
- type ListBlocksResponse = {
3
+ type ListEvmBlocksResponse = {
4
4
  /**
5
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
6
  */
7
7
  nextPageToken?: string;
8
- blocks: Array<Block>;
8
+ blocks: Array<EvmBlock>;
9
9
  };
10
10
 
11
- export { ListBlocksResponse };
11
+ export { ListEvmBlocksResponse };
@@ -1,7 +1,9 @@
1
1
  import { PChainBalance } from './PChainBalance.js';
2
+ import { PrimaryNetworkChainInfo } from './PrimaryNetworkChainInfo.js';
2
3
 
3
4
  type ListPChainBalancesResponse = {
4
5
  balances: PChainBalance;
6
+ chainInfo: PrimaryNetworkChainInfo;
5
7
  };
6
8
 
7
9
  export { ListPChainBalancesResponse };
@@ -1,4 +1,5 @@
1
1
  import { PChainTransaction } from './PChainTransaction.js';
2
+ import { PrimaryNetworkChainInfo } from './PrimaryNetworkChainInfo.js';
2
3
 
3
4
  type ListPChainTransactionsResponse = {
4
5
  /**
@@ -6,6 +7,7 @@ type ListPChainTransactionsResponse = {
6
7
  */
7
8
  nextPageToken?: string;
8
9
  transactions: Array<PChainTransaction>;
10
+ chainInfo: PrimaryNetworkChainInfo;
9
11
  };
10
12
 
11
13
  export { ListPChainTransactionsResponse };
@@ -1,4 +1,5 @@
1
1
  import { PChainUtxo } from './PChainUtxo.js';
2
+ import { PrimaryNetworkChainInfo } from './PrimaryNetworkChainInfo.js';
2
3
 
3
4
  type ListPChainUtxosResponse = {
4
5
  /**
@@ -6,6 +7,7 @@ type ListPChainUtxosResponse = {
6
7
  */
7
8
  nextPageToken?: string;
8
9
  utxos: Array<PChainUtxo>;
10
+ chainInfo: PrimaryNetworkChainInfo;
9
11
  };
10
12
 
11
13
  export { ListPChainUtxosResponse };
@@ -0,0 +1,13 @@
1
+ import { PrimaryNetworkBlock } from './PrimaryNetworkBlock.js';
2
+ import { PrimaryNetworkChainInfo } from './PrimaryNetworkChainInfo.js';
3
+
4
+ type ListPrimaryNetworkBlocksResponse = {
5
+ /**
6
+ * 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.
7
+ */
8
+ nextPageToken?: string;
9
+ blocks: Array<PrimaryNetworkBlock>;
10
+ chainInfo: PrimaryNetworkChainInfo;
11
+ };
12
+
13
+ export { ListPrimaryNetworkBlocksResponse };
@@ -1,3 +1,4 @@
1
+ import { PrimaryNetworkChainInfo } from './PrimaryNetworkChainInfo.js';
1
2
  import { Utxo } from './Utxo.js';
2
3
 
3
4
  type ListUtxosResponse = {
@@ -6,6 +7,7 @@ type ListUtxosResponse = {
6
7
  */
7
8
  nextPageToken?: string;
8
9
  utxos: Array<Utxo>;
10
+ chainInfo: PrimaryNetworkChainInfo;
9
11
  };
10
12
 
11
13
  export { ListUtxosResponse };
@@ -1,7 +1,9 @@
1
+ import { PrimaryNetworkChainInfo } from './PrimaryNetworkChainInfo.js';
1
2
  import { XChainBalances } from './XChainBalances.js';
2
3
 
3
4
  type ListXChainBalancesResponse = {
4
5
  balances: XChainBalances;
6
+ chainInfo: PrimaryNetworkChainInfo;
5
7
  };
6
8
 
7
9
  export { ListXChainBalancesResponse };
@@ -1,3 +1,4 @@
1
+ import { PrimaryNetworkChainInfo } from './PrimaryNetworkChainInfo.js';
1
2
  import { XChainLinearTransaction } from './XChainLinearTransaction.js';
2
3
  import { XChainNonLinearTransaction } from './XChainNonLinearTransaction.js';
3
4
 
@@ -7,6 +8,7 @@ type ListXChainTransactionsResponse = {
7
8
  */
8
9
  nextPageToken?: string;
9
10
  transactions: Array<(XChainNonLinearTransaction | XChainLinearTransaction)>;
11
+ chainInfo: PrimaryNetworkChainInfo;
10
12
  };
11
13
 
12
14
  export { ListXChainTransactionsResponse };
@@ -1,3 +1,4 @@
1
+ import { PrimaryNetworkChainInfo } from './PrimaryNetworkChainInfo.js';
1
2
  import { XChainVertex } from './XChainVertex.js';
2
3
 
3
4
  type ListXChainVerticesResponse = {
@@ -6,6 +7,7 @@ type ListXChainVerticesResponse = {
6
7
  */
7
8
  nextPageToken?: string;
8
9
  vertices: Array<XChainVertex>;
10
+ chainInfo: PrimaryNetworkChainInfo;
9
11
  };
10
12
 
11
13
  export { ListXChainVerticesResponse };
@@ -4,27 +4,27 @@ type PChainBalance = {
4
4
  /**
5
5
  * A list of objects containing P-chain Asset ID and the amount of that Asset ID. Denotes the amount of unstaked Avax that is consumable by any transaction.
6
6
  */
7
- unlockedUnstaked?: Array<PChainAsset>;
7
+ unlockedUnstaked: Array<PChainAsset>;
8
8
  /**
9
9
  * A list of objects containing P-chain Asset ID and the amount of that Asset ID. Denotes the amount of staked Avax that is consumable by any transaction when the staking period ends.
10
10
  */
11
- unlockedStaked?: Array<PChainAsset>;
11
+ unlockedStaked: Array<PChainAsset>;
12
12
  /**
13
13
  * A list of objects containing P-chain Asset ID and the amount of that Asset ID. Denotes the amount of unstaked Avax that is locked at the platform level and not consumable by any transaction at the current time.
14
14
  */
15
- lockedPlatform?: Array<PChainAsset>;
15
+ lockedPlatform: Array<PChainAsset>;
16
16
  /**
17
17
  * A list of objects containing P-chain Asset ID and the amount of that Asset ID. Denotes the amount of unstaked Avax that is locked at the platform level and only consumeable for staking transactions.
18
18
  */
19
- lockedStakeable?: Array<PChainAsset>;
19
+ lockedStakeable: Array<PChainAsset>;
20
20
  /**
21
21
  * A list of objects containing P-chain Asset ID and the amount of that Asset ID. Denotes the amount of staked Avax that will be locked when the staking period ends.
22
22
  */
23
- lockedStaked?: Array<PChainAsset>;
23
+ lockedStaked: Array<PChainAsset>;
24
24
  /**
25
25
  * A list of objects containing P-chain Asset ID and the amount of that Asset ID. Denotes the amount of unstaked Avax that is locked. Sum of lockedPlatform and lockedStakeable. TO BE DEPRECATED.
26
26
  */
27
- lockedUnstaked?: Array<PChainAsset>;
27
+ lockedUnstaked: Array<PChainAsset>;
28
28
  };
29
29
 
30
30
  export { PChainBalance };
@@ -27,15 +27,15 @@ type PChainTransaction = {
27
27
  /**
28
28
  * A list of objects containing P-chain Asset ID and the amount of that Asset ID.
29
29
  */
30
- value?: Array<PChainAsset>;
30
+ value: Array<PChainAsset>;
31
31
  /**
32
32
  * A list of objects containing P-chain Asset ID and the amount of that Asset ID.
33
33
  */
34
- amountBurned?: Array<PChainAsset>;
34
+ amountBurned: Array<PChainAsset>;
35
35
  /**
36
36
  * A list of objects containing P-chain Asset ID and the amount of that Asset ID. Present for AddValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
37
37
  */
38
- amountStaked?: Array<PChainAsset>;
38
+ amountStaked: Array<PChainAsset>;
39
39
  /**
40
40
  * Present for AddValidatorTx, AddSubnetValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
41
41
  */
@@ -9,9 +9,11 @@ type PChainUtxo = {
9
9
  utxoId: string;
10
10
  txHash: string;
11
11
  outputIndex: number;
12
+ blockNumber: string;
12
13
  blockTimestamp: number;
13
14
  consumingTxHash?: string;
14
15
  consumingBlockTimestamp?: number;
16
+ consumingBlockNumber?: string;
15
17
  assetId: string;
16
18
  utxoType: UtxoType;
17
19
  amount: string;
@@ -21,6 +23,8 @@ type PChainUtxo = {
21
23
  createdOnChainId: string;
22
24
  consumedOnChainId: string;
23
25
  staked?: boolean;
26
+ utxoStartTimestamp?: number;
27
+ utxoEndTimestamp?: number;
24
28
  rewardType?: RewardType;
25
29
  /**
26
30
  * To be deprecated
@@ -0,0 +1,6 @@
1
+ declare enum PrimaryNetwork {
2
+ MAINNET = "mainnet",
3
+ FUJI = "fuji"
4
+ }
5
+
6
+ export { PrimaryNetwork };
@@ -0,0 +1,7 @@
1
+ var PrimaryNetwork = /* @__PURE__ */ ((PrimaryNetwork2) => {
2
+ PrimaryNetwork2["MAINNET"] = "mainnet";
3
+ PrimaryNetwork2["FUJI"] = "fuji";
4
+ return PrimaryNetwork2;
5
+ })(PrimaryNetwork || {});
6
+
7
+ export { PrimaryNetwork };
@@ -1,6 +1,6 @@
1
1
  import { ProposerDetails } from './ProposerDetails.js';
2
2
 
3
- type Block = {
3
+ type PrimaryNetworkBlock = {
4
4
  blockNumber: string;
5
5
  blockHash: string;
6
6
  parentHash: string;
@@ -12,4 +12,4 @@ type Block = {
12
12
  proposerDetails?: ProposerDetails;
13
13
  };
14
14
 
15
- export { Block };
15
+ export { PrimaryNetworkBlock };
@@ -0,0 +1,9 @@
1
+ import { PrimaryNetwork } from './PrimaryNetwork.js';
2
+ import { PrimaryNetworkChainName } from './PrimaryNetworkChainName.js';
3
+
4
+ type PrimaryNetworkChainInfo = {
5
+ chainName: PrimaryNetworkChainName;
6
+ network: PrimaryNetwork;
7
+ };
8
+
9
+ export { PrimaryNetworkChainInfo };
@@ -0,0 +1,7 @@
1
+ declare enum PrimaryNetworkChainName {
2
+ X_CHAIN = "x-chain",
3
+ P_CHAIN = "p-chain",
4
+ C_CHAIN = "c-chain"
5
+ }
6
+
7
+ export { PrimaryNetworkChainName };
@@ -0,0 +1,8 @@
1
+ var PrimaryNetworkChainName = /* @__PURE__ */ ((PrimaryNetworkChainName2) => {
2
+ PrimaryNetworkChainName2["X_CHAIN"] = "x-chain";
3
+ PrimaryNetworkChainName2["P_CHAIN"] = "p-chain";
4
+ PrimaryNetworkChainName2["C_CHAIN"] = "c-chain";
5
+ return PrimaryNetworkChainName2;
6
+ })(PrimaryNetworkChainName || {});
7
+
8
+ export { PrimaryNetworkChainName };
@@ -51,10 +51,18 @@ type Utxo = {
51
51
  * Addresses that are eligible to sign the consumption of this output.
52
52
  */
53
53
  addresses: Array<string>;
54
+ /**
55
+ * Hex encoded data for NFT assets
56
+ */
57
+ payload?: string;
58
+ /**
59
+ * Index representing the minting set for the NFT mint output
60
+ */
61
+ groupId?: number;
54
62
  /**
55
63
  * Credentials that signed the transaction to consume this utxo
56
64
  */
57
- credentials: Array<UtxoCredential>;
65
+ credentials?: Array<UtxoCredential>;
58
66
  };
59
67
 
60
68
  export { Utxo };
@@ -8,7 +8,7 @@ type XChainLinearTransaction = {
8
8
  */
9
9
  txHash: string;
10
10
  /**
11
- * Represents container format this transaction is included in.
11
+ * Represents chain format this transaction is included in.
12
12
  */
13
13
  chainFormat: XChainLinearTransaction.chainFormat;
14
14
  /**
@@ -56,11 +56,11 @@ type XChainLinearTransaction = {
56
56
  };
57
57
  declare namespace XChainLinearTransaction {
58
58
  /**
59
- * Represents container format this transaction is included in.
59
+ * Represents chain format this transaction is included in.
60
60
  */
61
61
  enum chainFormat {
62
- LINEAR = "linear",
63
- NON_LINEAR = "non-linear"
62
+ NON_LINEAR = "non-linear",
63
+ LINEAR = "linear"
64
64
  }
65
65
  }
66
66
 
@@ -1,8 +1,8 @@
1
1
  var XChainLinearTransaction;
2
2
  ((XChainLinearTransaction2) => {
3
3
  ((chainFormat2) => {
4
- chainFormat2["LINEAR"] = "linear";
5
4
  chainFormat2["NON_LINEAR"] = "non-linear";
5
+ chainFormat2["LINEAR"] = "linear";
6
6
  })(XChainLinearTransaction2.chainFormat || (XChainLinearTransaction2.chainFormat = {}));
7
7
  })(XChainLinearTransaction || (XChainLinearTransaction = {}));
8
8
 
@@ -9,7 +9,7 @@ type XChainNonLinearTransaction = {
9
9
  */
10
10
  txHash: string;
11
11
  /**
12
- * Represents container format this transaction is included in.
12
+ * Represents chain format this transaction is included in.
13
13
  */
14
14
  chainFormat: XChainNonLinearTransaction.chainFormat;
15
15
  /**
@@ -53,11 +53,11 @@ type XChainNonLinearTransaction = {
53
53
  };
54
54
  declare namespace XChainNonLinearTransaction {
55
55
  /**
56
- * Represents container format this transaction is included in.
56
+ * Represents chain format this transaction is included in.
57
57
  */
58
58
  enum chainFormat {
59
- LINEAR = "linear",
60
- NON_LINEAR = "non-linear"
59
+ NON_LINEAR = "non-linear",
60
+ LINEAR = "linear"
61
61
  }
62
62
  }
63
63
 
@@ -1,8 +1,8 @@
1
1
  var XChainNonLinearTransaction;
2
2
  ((XChainNonLinearTransaction2) => {
3
3
  ((chainFormat2) => {
4
- chainFormat2["LINEAR"] = "linear";
5
4
  chainFormat2["NON_LINEAR"] = "non-linear";
5
+ chainFormat2["LINEAR"] = "linear";
6
6
  })(XChainNonLinearTransaction2.chainFormat || (XChainNonLinearTransaction2.chainFormat = {}));
7
7
  })(XChainNonLinearTransaction || (XChainNonLinearTransaction = {}));
8
8