import type { FormattedTransactionRequest, JsonRpcAccount, Address } from 'viem'; import type { EtherValue, CommonTransactionProps } from '../core/types.js'; export type WrapProps = CommonTransactionProps & { value: EtherValue; referralAddress?: Address; }; export type WrapResults = { stethWrapped: bigint; wstethReceived: bigint; }; export type UnwrapResults = { wstethUnwrapped: bigint; stethReceived: bigint; }; export type WrapPropsWithoutCallback = Omit; export type WrapInnerProps = Omit & { value: bigint; account: JsonRpcAccount; referralAddress: Address; }; export type PopulatedTx = Omit; //# sourceMappingURL=types.d.ts.map