A mix of all transaction types.

interface Tx {
    abiVersion?: string;
    accountId?: string;
    amount?: string;
    authData?: string;
    authFun?: string;
    callData?: string;
    callerId?: string;
    channelId?: string;
    channelReserve?: string;
    clientTtl?: string;
    code?: string;
    commitmentId?: string;
    contractId?: string;
    delegateIds?: Delegates;
    deposit?: string;
    fee: string;
    fromId?: string;
    gaId?: string;
    gas?: string;
    gasPrice?: string;
    initiatorAmount?: string;
    initiatorAmountFinal?: string;
    initiatorDelegateIds?: string[];
    initiatorId?: string;
    lockPeriod?: string;
    name?: string;
    nameFee?: string;
    nameId?: string;
    nameSalt?: string;
    nameTtl?: string;
    nonce?: string;
    offchainTrees?: string;
    oracleId?: string;
    oracleTtl?: RelativeTTL;
    ownerId?: string;
    payerId?: string;
    payload?: string;
    poi?: string;
    pointers?: NamePointer[];
    query?: string;
    queryFee?: string;
    queryFormat?: string;
    queryId?: string;
    queryTtl?: Ttl;
    recipientId?: string;
    responderAmount?: string;
    responderAmountFinal?: string;
    responderDelegateIds?: string[];
    responderId?: string;
    response?: string;
    responseFormat?: string;
    responseTtl?: RelativeTTL;
    round?: string;
    senderId?: string;
    stateHash?: string;
    toId?: string;
    ttl?: string;
    tx?: SignedTx;
    type: TxType;
    update?: OffChainUpdateUnion;
    version: string;
    vmVersion?: string;
}

Properties

abiVersion?: string
accountId?: string

Base58Check encoded tagged pubkey

amount?: string
authData?: string

Base64Check encoded tagged byte array

authFun?: string

Contract authorization function hash (hex encoded)

callData?: string

Base64Check encoded tagged byte array

callerId?: string

Base58Check encoded tagged pubkey

channelId?: string

Base58Check encoded tagged pubkey

channelReserve?: string
clientTtl?: string
code?: string

Base64Check encoded tagged byte array

commitmentId?: string

Base58Check encoded tagged value

contractId?: string

Base58Check encoded tagged pubkey

delegateIds?: Delegates
deposit?: string
fee: string
fromId?: string

Base58Check encoded tagged pubkey

gaId?: string

Base58Check encoded tagged pubkey

gas?: string
gasPrice?: string
initiatorAmount?: string
initiatorAmountFinal?: string
initiatorDelegateIds?: string[]
initiatorId?: string

Base58Check encoded tagged pubkey

lockPeriod?: string
name?: string
nameFee?: string
nameId?: string

Base58Check encoded tagged value

nameSalt?: string
nameTtl?: string
nonce?: string
offchainTrees?: string

Base64Check encoded tagged byte array

oracleId?: string

Base58Check encoded tagged pubkey

oracleTtl?: RelativeTTL
ownerId?: string

Base58Check encoded tagged pubkey

payerId?: string

Base58Check encoded tagged pubkey

payload?: string

Base64Check encoded tagged byte array

poi?: string

Base64Check encoded tagged byte array

pointers?: NamePointer[]
query?: string
queryFee?: string
queryFormat?: string
queryId?: string

Base58Check encoded tagged value

queryTtl?: Ttl
recipientId?: string

Base58Check encoded tagged pubkey

responderAmount?: string
responderAmountFinal?: string
responderDelegateIds?: string[]
responderId?: string

Base58Check encoded tagged pubkey

response?: string
responseFormat?: string
responseTtl?: RelativeTTL
round?: string
senderId?: string

Base58Check encoded tagged pubkey

stateHash?: string

Base58Check encoded tagged pubkey

toId?: string

Base58Check encoded tagged pubkey

ttl?: string
type: TxType
version: string
vmVersion?: string

Generated using TypeDoc