@0xobelisk/rooch-client
Version:
Tookit for interacting with rooch move framework
14 lines (13 loc) • 508 B
TypeScript
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;