ReceiptMessageOut: {
    amount: BN;
    data: Uint8Array;
    digest: string;
    len: number;
    messageId: string;
    nonce: string;
    recipient: string;
    sender: string;
    type: MessageOut;
}

Type declaration

  • amount: BN

    Hexadecimal string representation of a 64-bit unsigned integer; value of register $rD

  • data: Uint8Array

    Hexadecimal string representation of the value of the memory range MEM[$rA + 32, $rB]

  • digest: string

    Hexadecimal string representation of 256-bit (32-byte), hash of MEM[$rA + 32, $rB]

  • len: number

    Decimal string representation of a 16-bit unsigned integer; value of register $rC.

  • messageId: string

    Hexadecimal string representation of the 256-bit (32-byte) message ID

  • nonce: string

    Hexadecimal string representation of the 256-bit (32-byte) message nonce

  • recipient: string

    Hexadecimal string representation of the 256-bit (32-byte) address of the message recipient: MEM[$rA, 32]

  • sender: string

    Hexadecimal string representation of the 256-bit (32-byte) address of the message sender: MEM[$fp, 32]

  • type: MessageOut