bc-web3js
Version: 
A Typescript SDK for interacting with the ByteChain Blockchain.
10 lines (9 loc) • 349 B
TypeScript
export declare function hash_tobuf(data_str: string): Buffer;
export declare function hash_tostr(data_str: string): string;
export declare const GEN_CONTRACT_RECIPIENT: string;
export declare enum Tx_Type {
    BYTE_TX = "byte_tx",
    CONTRACT = "contract",
    CONTRACT_CALL = "contract_call"
}
export declare const print: (...data: any) => void;