forked from cerc-io/laconic-wallet
Part of [laconicd testnet validator enrollment ](https://www.notion.so/laconicd-testnet-validator-enrollment-6fc1d3cafcc64fef8c5ed3affa27c675) Co-authored-by: IshaVenikar <ishavenikar7@gmail.com> Reviewed-on: cerc-io/laconic-wallet#9
13 lines
396 B
TypeScript
13 lines
396 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;
|
|
LACONICD_RPC_URL: string;
|
|
}
|
|
|
|
export const Config: NativeConfig;
|
|
export default Config;
|
|
}
|