UNPKG

@truenetworkio/sdk

Version:

True Network SDK is the abstracted interface for interacting with True Network nodes.

14 lines (13 loc) 388 B
export declare const toTrueNetworkAddress: (address?: string) => string; export declare const checkAndConvertAddresses: (addresses: string[]) => string[]; type WalletAddressType = { "Unknown": string; } | { "Ethereum": string; } | { "Solana": string; } | { "Substrate": string; }; export declare const getWalletWithType: (address: string) => WalletAddressType; export {};