ribbit-wallet-connect
Version:
Next-generation multi-chain wallet and payments app that makes crypto simple, secure, and usable in daily life.
11 lines (10 loc) • 406 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getNetworkAndChain = void 0;
const constants_1 = require("../core/constants");
const getNetworkAndChain = (chainId) => {
const networkAndChain = constants_1.CHAIN_IDS[chainId];
const [network, chain] = networkAndChain.split('_');
return { network, chain };
};
exports.getNetworkAndChain = getNetworkAndChain;