UNPKG

@0xobelisk/rooch-client

Version:
14 lines (13 loc) 508 B
import { Secp256k1Keypair } from '@roochnetwork/rooch-sdk'; import type { DerivePathParams } from '../../types'; /** * @description Get derive path for ROOCH * @param derivePathParams */ export declare const getDerivePathForROOCH: (derivePathParams?: DerivePathParams) => string; /** * @description Get keypair from mnemonics and derive path * @param mnemonics * @param derivePathParams */ export declare const getKeyPair: (mnemonics: string, derivePathParams?: DerivePathParams) => Secp256k1Keypair;