@okxweb3/coin-stellar
Version:
@ok/coin-stellar is a Stellar SDK for building Web3 wallets and applications. It supports Stellar and PI blockchains, enabling private key management, address generation, transaction signing, trustline creation, and asset transfers
16 lines • 495 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PIWallet = exports.PINetworks = void 0;
const StellarWallet_1 = require("./StellarWallet");
exports.PINetworks = {
TESTNET: 'Pi Testnet',
TESTNET2: 'Pi Testnet',
MAINNET: 'Pi Network',
};
class PIWallet extends StellarWallet_1.StellarWallet {
async getDerivedPath(param) {
return `m/44'/314159'/${param.index}'`;
}
}
exports.PIWallet = PIWallet;
//# sourceMappingURL=PIWallet.js.map