@xchainjs/xchain-thorchain 0.19.1 → 0.19.2-alpha1
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 +7 -1
- package/lib/index.esm.js +1 -1
- package/lib/index.js +1 -1
- package/lib/util.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/lib/index.esm.js
CHANGED
|
@@ -116,7 +116,7 @@ var msgNativeTxFromJson = function (value) {
|
|
|
116
116
|
|
|
117
117
|
var DECIMAL = 8;
|
|
118
118
|
var DEFAULT_GAS_VALUE = '2000000';
|
|
119
|
-
var DEPOSIT_GAS_VALUE = '
|
|
119
|
+
var DEPOSIT_GAS_VALUE = '500000000';
|
|
120
120
|
var MAX_TX_COUNT = 100;
|
|
121
121
|
/**
|
|
122
122
|
* Get denomination from Asset
|
package/lib/index.js
CHANGED
|
@@ -124,7 +124,7 @@ var msgNativeTxFromJson = function (value) {
|
|
|
124
124
|
|
|
125
125
|
var DECIMAL = 8;
|
|
126
126
|
var DEFAULT_GAS_VALUE = '2000000';
|
|
127
|
-
var DEPOSIT_GAS_VALUE = '
|
|
127
|
+
var DEPOSIT_GAS_VALUE = '500000000';
|
|
128
128
|
var MAX_TX_COUNT = 100;
|
|
129
129
|
/**
|
|
130
130
|
* Get denomination from Asset
|
package/lib/util.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import { ClientUrl, ExplorerUrls, TxData } from './types';
|
|
|
8
8
|
import { MsgNativeTx } from './types/messages';
|
|
9
9
|
export declare const DECIMAL = 8;
|
|
10
10
|
export declare const DEFAULT_GAS_VALUE = "2000000";
|
|
11
|
-
export declare const DEPOSIT_GAS_VALUE = "
|
|
11
|
+
export declare const DEPOSIT_GAS_VALUE = "500000000";
|
|
12
12
|
export declare const MAX_TX_COUNT = 100;
|
|
13
13
|
/**
|
|
14
14
|
* Get denomination from Asset
|