UNPKG

@exromany/lido-csm-sdk

Version:

[![GitHub license](https://img.shields.io/github/license/lidofinance/lido-csm-sdk?color=limegreen)](https://github.com/lidofinance/lido-csm-sdk/blob/main/LICENSE.txt) [![Version npm](https://img.shields.io/npm/v/@lidofinance/lido-csm-sdk?label=version)](h

17 lines 760 B
import { Erc20Tokens } from '../common/types.js'; import { CommonTransactionProps } from '../core-sdk/types.js'; type AccountProps = Pick<CommonTransactionProps, 'account'>; export type AmountAndTokenProps = { amount: bigint; token: Erc20Tokens; }; export type AllowanceProps = Pick<AmountAndTokenProps, 'token'> & AccountProps; export type CheckAllowanceProps = AmountAndTokenProps & AccountProps; export type ApproveProps = AmountAndTokenProps & CommonTransactionProps; export type isMultisigProps = AccountProps; export type SignPermitProps = AmountAndTokenProps & CommonTransactionProps & AccountProps & { dealine?: bigint; }; export type SignPermitOrApproveProps = SignPermitProps & ApproveProps; export {}; //# sourceMappingURL=types.d.ts.map