interface PushMessageParams {
    msg: {
        from: string;
        gasFeeCap: string;
        gasLimit: number;
        gasPremium: string;
        method: number;
        nonce: number;
        params: string;
        to: string;
        value: string;
        version: 0;
    };
    signature: { data: Uint8Array; type: "SECP256K1"
    | "BLS" };
}

Properties

Properties

msg: {
    from: string;
    gasFeeCap: string;
    gasLimit: number;
    gasPremium: string;
    method: number;
    nonce: number;
    params: string;
    to: string;
    value: string;
    version: 0;
}

Type declaration

  • from: string
  • gasFeeCap: string
  • gasLimit: number
  • gasPremium: string
  • method: number
  • nonce: number
  • params: string

    base64pad encoded

  • to: string
  • value: string
  • version: 0
signature: { data: Uint8Array; type: "SECP256K1" | "BLS" }