@pushchain/ui-kit
Version:
## Overview
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;
};