Interface PaymentInfo

Basic payment information required for a quote request PaymentInfo

interface PaymentInfo {
    chainId: string;
    initCode?: `0x${string}`;
    nonce: string;
    sender: `0x${string}`;
    token: `0x${string}`;
}

Properties

chainId: string

Chain ID where the payment will be processed

initCode?: `0x${string}`

Optional initialization code for account deployment

nonce: string

Current nonce of the sender account

sender: `0x${string}`

Address of the account paying for the transaction

token: `0x${string}`

Address of the token used for payment