UNPKG

@kubectl/caminojs

Version:
46 lines 1.34 kB
/** * @packageDocumentation * @module API-EVM-KeyChain */ import { Buffer } from "buffer/"; import { SECP256k1KeyChain, SECP256k1KeyPair } from "../../common/secp256k1"; /** * Class for representing a private and public keypair on an AVM Chain. */ export declare class KeyPair extends SECP256k1KeyPair { clone(): this; create(...args: any[]): this; } /** * Class for representing a key chain in Avalanche. * * @typeparam KeyPair Class extending [[SECP256k1KeyChain]] which is used as the key in [[KeyChain]] */ export declare class KeyChain extends SECP256k1KeyChain<KeyPair> { hrp: string; chainID: string; /** * Makes a new key pair, returns the address. * * @returns The new key pair */ makeKey: () => KeyPair; addKey: (newKey: KeyPair) => void; /** * Given a private key, makes a new key pair, returns the address. * * @param privk A {@link https://github.com/feross/buffer|Buffer} * or cb58 serialized string representing the private key * * @returns The new key pair */ importKey: (privk: Buffer | string) => KeyPair; create(...args: any[]): this; clone(): this; union(kc: this): this; /** * Returns instance of KeyChain. */ constructor(hrp: string, chainID: string); } //# sourceMappingURL=keychain.d.ts.map