@lidofinance/lido-ethereum-sdk
Version:
<div style="display: flex;" align="center"> <h1 align="center">Lido Ethereum SDK</h1> </div>
96 lines • 2.94 kB
JavaScript
export const stethPartialAbi = [
{
constant: true,
inputs: [],
name: 'getStakeLimitFullInfo',
outputs: [
{ name: 'isStakingPaused', type: 'bool' },
{ name: 'isStakingLimitSet', type: 'bool' },
{ name: 'currentStakeLimit', type: 'uint256' },
{ name: 'maxStakeLimit', type: 'uint256' },
{ name: 'maxStakeLimitGrowthBlocks', type: 'uint256' },
{ name: 'prevStakeLimit', type: 'uint256' },
{ name: 'prevStakeBlockNumber', type: 'uint256' },
],
payable: false,
stateMutability: 'view',
type: 'function',
},
{
constant: false,
inputs: [
{ name: '_spender', type: 'address' },
{ name: '_amount', type: 'uint256' },
],
name: 'approve',
outputs: [{ name: '', type: 'bool' }],
payable: false,
stateMutability: 'nonpayable',
type: 'function',
},
{
constant: true,
inputs: [
{ name: '_owner', type: 'address' },
{ name: '_spender', type: 'address' },
],
name: 'allowance',
outputs: [{ name: '', type: 'uint256' }],
payable: false,
stateMutability: 'view',
type: 'function',
},
{
anonymous: false,
inputs: [
{ indexed: true, name: 'from', type: 'address' },
{ indexed: true, name: 'to', type: 'address' },
{ indexed: false, name: 'value', type: 'uint256' },
],
name: 'Transfer',
type: 'event',
},
{
anonymous: false,
inputs: [
{ indexed: true, name: 'owner', type: 'address' },
{ indexed: true, name: 'spender', type: 'address' },
{ indexed: false, name: 'value', type: 'uint256' },
],
name: 'Approval',
type: 'event',
},
{
anonymous: false,
inputs: [
{ indexed: true, name: 'from', type: 'address' },
{ indexed: true, name: 'to', type: 'address' },
{ indexed: false, name: 'sharesValue', type: 'uint256' },
],
name: 'TransferShares',
type: 'event',
},
{
anonymous: false,
inputs: [
{ indexed: true, name: 'sender', type: 'address' },
{ indexed: false, name: 'amount', type: 'uint256' },
{ indexed: false, name: 'referral', type: 'address' },
],
name: 'Submitted',
type: 'event',
},
];
export const PartialTransferEventAbi = [
{
anonymous: false,
inputs: [
{ indexed: true, name: 'from', type: 'address' },
{ indexed: true, name: 'to', type: 'address' },
{ indexed: false, name: 'value', type: 'uint256' },
],
name: 'Transfer',
type: 'event',
},
];
//# sourceMappingURL=steth-partial.js.map