@avalabs/glacier-sdk 3.1.0-canary.b7d64d8.0 → 3.1.0-canary.b87bab5.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 CHANGED
@@ -3242,7 +3242,7 @@ type Blockchain = {
3242
3242
  /**
3243
3243
  * The genesis data of the blockchain.
3244
3244
  */
3245
- genesisData: Record<string, any>;
3245
+ genesisData?: Record<string, any>;
3246
3246
  };
3247
3247
 
3248
3248
  declare enum BlockchainIds {
@@ -4854,7 +4854,7 @@ type BlockchainInfo = {
4854
4854
  /**
4855
4855
  * The genesis data of the blockchain. Present for CreateChainTx. EVM based chains will return the genesis data as an object. Non-EVM based chains will return the genesis data as an encoded string. The encoding depends on the VM
4856
4856
  */
4857
- genesisData: Record<string, any>;
4857
+ genesisData?: Record<string, any>;
4858
4858
  };
4859
4859
 
4860
4860
  type L1ValidatorDetailsTransaction = {
@@ -12,7 +12,7 @@ type Blockchain = {
12
12
  /**
13
13
  * The genesis data of the blockchain.
14
14
  */
15
- genesisData: Record<string, any>;
15
+ genesisData?: Record<string, any>;
16
16
  };
17
17
 
18
18
  export type { Blockchain };
@@ -4,7 +4,7 @@ type BlockchainInfo = {
4
4
  /**
5
5
  * The genesis data of the blockchain. Present for CreateChainTx. EVM based chains will return the genesis data as an object. Non-EVM based chains will return the genesis data as an encoded string. The encoding depends on the VM
6
6
  */
7
- genesisData: Record<string, any>;
7
+ genesisData?: Record<string, any>;
8
8
  };
9
9
 
10
10
  export type { BlockchainInfo };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@avalabs/glacier-sdk",
3
- "version": "3.1.0-canary.b7d64d8.0+b7d64d8",
3
+ "version": "3.1.0-canary.b87bab5.0+b87bab5",
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",
@@ -38,5 +38,5 @@
38
38
  "bugs": {
39
39
  "url": "https://github.com/ava-labs/avalanche-sdks/issues"
40
40
  },
41
- "gitHead": "b7d64d82bdab9ff8fc5e9e6d3b69d734641dce80"
41
+ "gitHead": "b87bab58ae5339045e1fc1470e9cfbb434f957ee"
42
42
  }