@xchainjs/xchain-avax 1.0.9 → 1.0.11

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 (2) hide show
  1. package/lib/index.js +1 -1
  2. package/package.json +6 -6
package/lib/index.js CHANGED
@@ -144,6 +144,6 @@ exports.ClientKeystore = ClientKeystore;
144
144
  exports.ClientLedger = ClientLedger;
145
145
  exports.LOWER_FEE_BOUND = LOWER_FEE_BOUND;
146
146
  exports.UPPER_FEE_BOUND = UPPER_FEE_BOUND;
147
- exports["default"] = ClientKeystore;
147
+ exports.default = ClientKeystore;
148
148
  exports.defaultAvaxParams = defaultAvaxParams;
149
149
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xchainjs/xchain-avax",
3
- "version": "1.0.9",
3
+ "version": "1.0.11",
4
4
  "description": "Avax EVM client for XChainJS",
5
5
  "keywords": [
6
6
  "XChain",
@@ -25,7 +25,7 @@
25
25
  },
26
26
  "scripts": {
27
27
  "clean": "rm -rf .turbo && rm -rf lib",
28
- "build": "yarn clean && rollup -c",
28
+ "build": "yarn clean && rollup -c --bundleConfigAsCjs",
29
29
  "build:release": "yarn exec rm -rf release && yarn pack && yarn exec \"mkdir release && tar zxvf package.tgz --directory release && rm package.tgz\"",
30
30
  "test": "jest --passWithNoTests",
31
31
  "e2e": "jest --config jest.config.e2e.js",
@@ -37,10 +37,10 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@ledgerhq/hw-transport": "6.30.6",
40
- "@xchainjs/xchain-client": "1.0.5",
41
- "@xchainjs/xchain-evm": "1.0.9",
42
- "@xchainjs/xchain-evm-providers": "1.0.7",
43
- "@xchainjs/xchain-util": "1.0.4",
40
+ "@xchainjs/xchain-client": "1.0.7",
41
+ "@xchainjs/xchain-evm": "1.0.11",
42
+ "@xchainjs/xchain-evm-providers": "1.0.9",
43
+ "@xchainjs/xchain-util": "1.0.6",
44
44
  "ethers": "5.7.2"
45
45
  },
46
46
  "devDependencies": {