forked from cerc-io/laconic-wallet
* 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
12 lines
366 B
TypeScript
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;
|
|
}
|