Variable ERC20_PERMIT_ABIConst
ERC20_PERMIT_ABI: readonly [
{
inputs: readonly [
{ name: "owner"; type: "address" },
{ name: "spender"; type: "address" },
{ name: "value"; type: "uint256" },
{ name: "deadline"; type: "uint256" },
{ name: "v"; type: "uint8" },
{ name: "r"; type: "bytes32" },
{ name: "s"; type: "bytes32" },
];
name: "permit";
outputs: readonly [];
stateMutability: "nonpayable";
type: "function";
},
{
inputs: readonly [{ name: "owner"; type: "address" }];
name: "nonces";
outputs: readonly [{ name: ""; type: "uint256" }];
stateMutability: "view";
type: "function";
},
{
inputs: readonly [];
name: "DOMAIN_SEPARATOR";
outputs: readonly [{ name: ""; type: "bytes32" }];
stateMutability: "view";
type: "function";
},
] = ...
ERC-20 Permit ABI extension (EIP-2612) Add to ERC20_ABI when interacting with permit-enabled tokens