x402-chainlink
    Preparing search index...

    Interface PaymentAuthorization

    Payment authorization structure (EIP-712 typed data)

    interface PaymentAuthorization {
        amount: string;
        chainId: number;
        from: `0x${string}`;
        nonce: string;
        to: `0x${string}`;
        token: `0x${string}`;
        validUntil: string;
    }
    Index

    Properties

    amount: string

    Payment amount (uint256 as string)

    chainId: number

    Chain ID for cross-chain safety

    from: `0x${string}`

    Payer address (0x...)

    nonce: string

    Nonce for replay protection

    to: `0x${string}`

    Recipient address (0x...)

    token: `0x${string}`

    Token contract address

    validUntil: string

    Expiry timestamp (Unix timestamp in seconds)