@xchainjs/xchain-thorchain 0.28.2 → 0.28.4
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/lib/client.d.ts +1 -1
- package/lib/const.d.ts +1 -1
- package/lib/index.esm.js +430 -439
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +430 -439
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/client.d.ts
CHANGED
|
@@ -177,7 +177,7 @@ declare class Client extends BaseXChainClient implements ThorchainClient, XChain
|
|
|
177
177
|
* @param {string} txId The transaction id.
|
|
178
178
|
* @returns {Tx} The transaction details of the given transaction id.
|
|
179
179
|
*/
|
|
180
|
-
getTransactionData(txId: string, address?:
|
|
180
|
+
getTransactionData(txId: string, address?: string): Promise<Tx>;
|
|
181
181
|
/** This function is used when in bound or outbound tx is not of thorchain
|
|
182
182
|
*
|
|
183
183
|
* @param txId - transaction hash
|
package/lib/const.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { Asset } from '@xchainjs/xchain-util/lib';
|
|
|
2
2
|
import { ExplorerUrls } from './types';
|
|
3
3
|
export declare const RUNE_DECIMAL = 8;
|
|
4
4
|
export declare const DEFAULT_GAS_ADJUSTMENT = 2;
|
|
5
|
-
export declare const DEFAULT_GAS_LIMIT_VALUE = "
|
|
5
|
+
export declare const DEFAULT_GAS_LIMIT_VALUE = "6000000";
|
|
6
6
|
export declare const DEPOSIT_GAS_LIMIT_VALUE = "600000000";
|
|
7
7
|
export declare const MAX_TX_COUNT_PER_PAGE = 100;
|
|
8
8
|
export declare const MAX_TX_COUNT_PER_FUNCTION_CALL = 500;
|