@chorus-one/signer-local
Version:
Local signer for Chorus One SDK that utilizes a BIP39 mnemonic for signing operations
16 lines (12 loc) • 300 B
TypeScript
import { KeyType } from '@chorus-one/signer'
/** @ignore */
export interface LocalSignerConfig {
// BIP39 mnemonic seed phrase
mnemonic: string
// BIP39 address derivation path
accounts: [{ hdPath: string }]
// signing key type
//
// @default KeyType.SECP256K1
keyType?: KeyType
}