@xchainjs/xchain-thorchain 0.22.0 → 0.22.1

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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # v0.22.1 (2022-02-16)
2
+
3
+ ## Fix
4
+
5
+ - Increase limit for `DEFAULT_GAS_VALUE` from 2000000 to 3000000 to accommodate recent increases in gas used that go above the old limit
6
+
1
7
  # v0.22.0 (2022-02-06)
2
8
 
3
9
  ## Add
package/lib/index.esm.js CHANGED
@@ -115,7 +115,7 @@ var msgNativeTxFromJson = function (value) {
115
115
  };
116
116
 
117
117
  var DECIMAL = 8;
118
- var DEFAULT_GAS_VALUE = '2000000';
118
+ var DEFAULT_GAS_VALUE = '3000000';
119
119
  var DEPOSIT_GAS_VALUE = '500000000';
120
120
  var MAX_TX_COUNT = 100;
121
121
  /**
package/lib/index.js CHANGED
@@ -123,7 +123,7 @@ var msgNativeTxFromJson = function (value) {
123
123
  };
124
124
 
125
125
  var DECIMAL = 8;
126
- var DEFAULT_GAS_VALUE = '2000000';
126
+ var DEFAULT_GAS_VALUE = '3000000';
127
127
  var DEPOSIT_GAS_VALUE = '500000000';
128
128
  var MAX_TX_COUNT = 100;
129
129
  /**
package/lib/util.d.ts CHANGED
@@ -7,7 +7,7 @@ import { MsgMultiSend, MsgSend } from 'cosmos-client/x/bank';
7
7
  import { ChainId, ClientUrl, ExplorerUrls, TxData } from './types';
8
8
  import { MsgNativeTx } from './types/messages';
9
9
  export declare const DECIMAL = 8;
10
- export declare const DEFAULT_GAS_VALUE = "2000000";
10
+ export declare const DEFAULT_GAS_VALUE = "3000000";
11
11
  export declare const DEPOSIT_GAS_VALUE = "500000000";
12
12
  export declare const MAX_TX_COUNT = 100;
13
13
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xchainjs/xchain-thorchain",
3
- "version": "0.22.0",
3
+ "version": "0.22.1",
4
4
  "description": "Custom Thorchain client and utilities used by XChainJS clients",
5
5
  "keywords": [
6
6
  "THORChain",