@sei-js/registry
Version:
TypeScript library for Sei chain constants and assets
19 lines (18 loc) • 705 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.WALLETS = void 0;
const wallets_json_1 = __importDefault(require("../../chain-registry/wallets.json"));
/**
* A constant holding the collection of wallet extensions, imported from the official Sei [chain-registry](https://github.com/sei-protocol/chain-registry).
*
* @example
* ```tsx
* import { WALLETS } from '@sei-js/registry';
*
* const compass = WALLETS.find((wallet) => wallet.identifier === 'compass');
* ```
*/
exports.WALLETS = wallets_json_1.default.extensions;