interface RawTransaction {
    additionalFee: number;
    amount: number;
    blockNumber: number;
    content: string;
    ed25519_signature: string;
    from: any;
    from_ed25519_address: string;
    hash: string;
    id: number;
    networkFee: number;
    nonce: number;
    rpcFee: number;
    signature: string;
    status: string;
    timestamp: number;
    to: any;
    type:
        | "web2Request"
        | "crosschainOperation"
        | "subnet"
        | "native"
        | "demoswork"
        | "genesis"
        | "NODE_ONLINE"
        | "identity"
        | "instantMessaging"
        | "nativeBridge"
        | "l2psEncryptedTx"
        | "storage"
        | "l2ps_hash_update"
        | "contractDeploy"
        | "contractCall";
}

Properties

additionalFee: number
amount: number
blockNumber: number
content: string
ed25519_signature: string
from: any
from_ed25519_address: string
hash: string
id: number
networkFee: number
nonce: number
rpcFee: number
signature: string
status: string
timestamp: number
to: any
type:
    | "web2Request"
    | "crosschainOperation"
    | "subnet"
    | "native"
    | "demoswork"
    | "genesis"
    | "NODE_ONLINE"
    | "identity"
    | "instantMessaging"
    | "nativeBridge"
    | "l2psEncryptedTx"
    | "storage"
    | "l2ps_hash_update"
    | "contractDeploy"
    | "contractCall"