UNPKG

chaingate

Version:

A complete TypeScript library for connecting to and making transactions on different blockchains

22 lines 794 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BNBChain = void 0; const Utils_1 = require("../../../../Utils/Utils"); const Evm_1 = require("../abstract/Evm/Evm"); class BNBChain extends Evm_1.Evm { constructor(api, currencyProviders) { super({ symbol: 'BSC', id: 'bnbChain', name: 'BNB Chain', svgLogoUrl: (0, Utils_1.buildUrlWithApiKey)('https://api.chaingate.dev/bnb/logo'), chainId: 0x38, decimals: 18, defaultDerivationPath: 'm/44\'/60\'/0\'/0/0', minimalUnitSymbol: 'wei', commonDerivationPaths: ['m/44\'/60\'/0\'/0/0',] }, api, currencyProviders); } } exports.BNBChain = BNBChain; //# sourceMappingURL=BNBChain.js.map