interface TransactionContent {
    amount: number;
    data: TransactionContentData;
    from: string;
    from_ed25519_address: string;
    gcr_edits: GCREdit[];
    nonce: number;
    timestamp: number;
    to: string;
    transaction_fee: TxFee;
    type:
        | "web2Request"
        | "crosschainOperation"
        | "subnet"
        | "native"
        | "demoswork"
        | "genesis"
        | "NODE_ONLINE"
        | "identity"
        | "instantMessaging"
        | "nativeBridge"
        | "l2psEncryptedTx";
}

Properties

amount: number
from: string
from_ed25519_address: string
gcr_edits: GCREdit[]
nonce: number
timestamp: number
to: string
transaction_fee: TxFee
type:
    | "web2Request"
    | "crosschainOperation"
    | "subnet"
    | "native"
    | "demoswork"
    | "genesis"
    | "NODE_ONLINE"
    | "identity"
    | "instantMessaging"
    | "nativeBridge"
    | "l2psEncryptedTx"