UNPKG

@dfinity/nns

Version:

A library for interfacing with the Internet Computer's Network Nervous System.

6 lines (5 loc) 438 B
import type { AccountIdentifierHex } from "@dfinity/ledger-icp"; import type { Principal } from "@dfinity/principal"; export declare const accountIdentifierToBytes: (accountIdentifier: AccountIdentifierHex) => Uint8Array; export declare const accountIdentifierFromBytes: (accountIdentifier: Uint8Array) => AccountIdentifierHex; export declare const principalToAccountIdentifier: (principal: Principal, subAccount?: Uint8Array) => string;