UNPKG

@firmachain/firma-js

Version:

The Official FirmaChain Javascript SDK written in Typescript

19 lines (18 loc) 589 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.makeCosmoshubPath = void 0; var crypto_1 = require("@cosmjs/crypto"); /** * The Cosmos Hub derivation path in the form `m/44'/118'/0'/0/a` * with 0-based account index `a`. */ function makeCosmoshubPath(a) { return [ crypto_1.Slip10RawIndex.hardened(44), crypto_1.Slip10RawIndex.hardened(118), crypto_1.Slip10RawIndex.hardened(0), crypto_1.Slip10RawIndex.normal(0), crypto_1.Slip10RawIndex.normal(a), ]; } exports.makeCosmoshubPath = makeCosmoshubPath;