kremalicious/blog

View on GitHub
src/features/Web3/hooks/useSend/abiErc20Transfer.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
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'
  }
]