@pushchain/ui-kit
Version:
Push Chain is a true universal L1 that is 100% EVM compatible. It allows developers to deploy once and make their apps instantly compatible with users from all other L1s (Ethereum, Solana, etc) with zero on-chain code change.
16 lines (15 loc) • 430 B
TypeScript
import { PUSH_NETWORK } from '@pushchain/core/src/lib/constants/enums';
export type ConfigType = {
WALLET_URL: {
[PUSH_NETWORK.MAINNET]: string;
[PUSH_NETWORK.TESTNET]: string;
[PUSH_NETWORK.TESTNET_DONUT]: string;
[PUSH_NETWORK.LOCALNET]: string;
};
};
export declare const WALLET_CONFIG_URL: {
MAINNET: string;
TESTNET: string;
TESTNET_DONUT: string;
LOCALNET: string;
};