@reown/appkit-common
Version:
The full stack toolkit to build onchain app UX.
44 lines • 930 B
JavaScript
export const usdtABI = [
{
type: 'function',
name: 'transfer',
stateMutability: 'nonpayable',
inputs: [
{
name: 'recipient',
type: 'address'
},
{
name: 'amount',
type: 'uint256'
}
],
outputs: []
},
{
type: 'function',
name: 'transferFrom',
stateMutability: 'nonpayable',
inputs: [
{
name: 'sender',
type: 'address'
},
{
name: 'recipient',
type: 'address'
},
{
name: 'amount',
type: 'uint256'
}
],
outputs: [
{
name: '',
type: 'bool'
}
]
}
];
//# sourceMappingURL=usdt.js.map