mirror of
https://github.com/kremalicious/blog.git
synced 2025-02-14 21:10:25 +01:00
14 lines
296 B
TypeScript
14 lines
296 B
TypeScript
export const abiErc20Transfer = [
|
|
{
|
|
constant: false,
|
|
inputs: [
|
|
{ name: '_to', type: 'address' },
|
|
{ name: '_value', type: 'uint256' }
|
|
],
|
|
name: 'transfer',
|
|
outputs: [{ name: 'success', type: 'bool' }],
|
|
stateMutability: 'nonpayable',
|
|
type: 'function'
|
|
}
|
|
]
|