@lidofinance/lido-ethereum-sdk
Version:
<div style="display: flex;" align="center"> <h1 align="center">Lido Ethereum SDK</h1> </div>
12 lines • 365 B
TypeScript
import type { Address } from 'viem';
import type { CommonTransactionProps, EtherValue } from '../core/types.js';
export type SharesTransferProps = CommonTransactionProps & {
from?: Address;
to: Address;
amount: EtherValue;
};
export type SharesTotalSupplyResult = {
totalShares: bigint;
totalEther: bigint;
};
//# sourceMappingURL=types.d.ts.map