UNPKG

@web3auth/modal

Version:

Multi chain wallet aggregator for web3Auth

19 lines (14 loc) 581 B
'use strict'; var config = require('./config.js'); var modalManager = require('./modalManager.js'); var noModal = require('@web3auth/no-modal'); exports.defaultConnectorsModalConfig = config.defaultConnectorsModalConfig; exports.version = config.version; exports.walletRegistryUrl = config.walletRegistryUrl; exports.Web3Auth = modalManager.Web3Auth; Object.keys(noModal).forEach(function (k) { if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, { enumerable: true, get: function () { return noModal[k]; } }); });