interface RawTransaction {
    additionalFee: number;
    amount: number;
    blockNumber: number;
    content: string;
    from: any;
    hash: string;
    id: number;
    networkFee: number;
    nonce: number;
    rpcFee: number;
    signature: string;
    status: string;
    timestamp: number;
    to: any;
    type: string;
}

Properties

additionalFee: number
amount: number
blockNumber: number
content: string
from: any
hash: string
id: number
networkFee: number
nonce: number
rpcFee: number
signature: string
status: string
timestamp: number
to: any
type: string