@signumjs/contracts
Version:
Smart Contracts package for Signum Network
14 lines (13 loc) • 514 B
TypeScript
import { Contract } from './typings/contract';
export declare class ContractDataView {
private readonly _contract;
static VariableLength: number;
constructor(_contract: Contract);
getContract(): Contract;
countCodePages(): number;
getVariableAsString(index: number): string;
getDataBlocksAsString(index: number, count?: number): string;
getVariableAsDecimal(index: number): string;
getVariable(index: number): string;
getHexDataAt(index: number, length?: number): string;
}