@reown/appkit-common
Version:
#### 🔗 [Website](https://reown.com/appkit)
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