laconic-wallet/react-native-config.d.ts
shreerang6921 db0b21ddd1 Simulate gas limit for cosmos transactions (#111)
* Simulate gas limit for cosmos transactions

* Reject request if funds are not sufficient

* Fix submit button disable condition

* Dont estimate gas if funds are not sufficient for evm chains

* Handle review changes
2024-04-25 17:08:27 +05:30

12 lines
366 B
TypeScript

// Reference: https://github.com/lugg/react-native-config?tab=readme-ov-file#typescript-declaration-for-your-env-file
declare module 'react-native-config' {
export interface NativeConfig {
WALLET_CONNECT_PROJECT_ID: string;
DEFAULT_GAS_PRICE: string;
DEFAULT_GAS_ADJUSTMENT: string;
}
export const Config: NativeConfig;
export default Config;
}