Type alias PaymentInfo

PaymentInfo: {
    chainId: string;
    initCode?: Hex;
    nonce: string;
    sender: Address;
    token: Address;
}

Basic payment information required for a quote request

Type declaration

  • chainId: string

    Chain ID where the payment will be processed

  • Optional initCode?: Hex

    Optional initialization code for account deployment

  • nonce: string

    Current nonce of the sender account

  • sender: Address

    Address of the account paying for the transaction

  • token: Address

    Address of the token used for payment