@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.
23 lines • 996 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ConnectionStatus = exports.ChainType = void 0;
var ChainType;
(function (ChainType) {
ChainType["ETHEREUM"] = "sepolia";
ChainType["SOLANA"] = "solana";
ChainType["BINANCE"] = "bscTestnet";
ChainType["ARBITRUM"] = "arbitrumSepolia";
ChainType["BASE"] = "baseSepolia";
ChainType["AVALANCHE"] = "avalanche";
ChainType["WALLET_CONNECT"] = "walletConnect";
ChainType["PUSH_WALLET"] = "pushWalletDonut";
})(ChainType || (exports.ChainType = ChainType = {}));
var ConnectionStatus;
(function (ConnectionStatus) {
ConnectionStatus["NOT_CONNECTED"] = "notConnected";
ConnectionStatus["CONNECTING"] = "connecting";
ConnectionStatus["AUTHENTICATING"] = "authenticating";
ConnectionStatus["CONNECTED"] = "connected";
ConnectionStatus["RETRY"] = "retry";
})(ConnectionStatus || (exports.ConnectionStatus = ConnectionStatus = {}));
//# sourceMappingURL=wallet.types.js.map