Interface Contract

The contract interface returned from Signum Node API core.ContractApi.getContract

interface Contract {
    at: string;
    atRS: string;
    atVersion: number;
    balanceNQT: string;
    creationBlock: number;
    creationMachineData?: string;
    creator: string;
    creatorRS: string;
    dead: boolean;
    description: string;
    finished: boolean;
    frozen: boolean;
    machineCode?: string;
    machineCodeHashId: string;
    machineData: string;
    minActivation: string;
    name: string;
    nextBlock: number;
    prevBalanceNQT: string;
    requestProcessingTime: number;
    running: boolean;
    stopped: boolean;
}

Properties

at: string
atRS: string
atVersion: number
balanceNQT: string
creationBlock: number
creationMachineData?: string
creator: string
creatorRS: string
dead: boolean
description: string
finished: boolean
frozen: boolean
machineCode?: string
machineCodeHashId: string
machineData: string
minActivation: string
name: string
nextBlock: number
prevBalanceNQT: string
requestProcessingTime: number
running: boolean
stopped: boolean