@reown/appkit-common
Version:
The full stack toolkit to build onchain app UX.
49 lines • 1.01 kB
JavaScript
export const erc20ABI = [
{
type: 'function',
name: 'transfer',
stateMutability: 'nonpayable',
inputs: [
{
name: '_to',
type: 'address'
},
{
name: '_value',
type: 'uint256'
}
],
outputs: [
{
name: '',
type: 'bool'
}
]
},
{
type: 'function',
name: 'transferFrom',
stateMutability: 'nonpayable',
inputs: [
{
name: '_from',
type: 'address'
},
{
name: '_to',
type: 'address'
},
{
name: '_value',
type: 'uint256'
}
],
outputs: [
{
name: '',
type: 'bool'
}
]
}
];
//# sourceMappingURL=erc20.js.map