sei-agent-kit
Version:
A package for building AI agents on the SEI blockchain
24 lines • 801 B
JavaScript
export const tTokenAbi = [
{
inputs: [{ internalType: 'uint256', name: 'repayAmount', type: 'uint256' }],
name: 'repayBorrow',
outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
stateMutability: 'nonpayable',
type: 'function',
},
{
inputs: [{ internalType: 'address', name: 'account', type: 'address' }],
name: 'borrowBalanceCurrent',
outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
stateMutability: 'nonpayable',
type: 'function',
},
{
inputs: [],
name: 'underlying',
outputs: [{ internalType: 'address', name: '', type: 'address' }],
stateMutability: 'view',
type: 'function',
}
];
//# sourceMappingURL=t_Tokenabi.js.map