UNPKG

@safe-global/protocol-kit

Version:

SDK that facilitates the interaction with Safe Smart Accounts

19 lines 664 B
import { SafeTransactionDataPartial } from '@safe-global/types-kit'; import { Chain, Address, Account } from 'viem'; export type SafeTransactionOptionalProps = Pick<SafeTransactionDataPartial, 'safeTxGas' | 'baseGas' | 'gasPrice' | 'gasToken' | 'refundReceiver' | 'nonce'>; export type WalletTransactionOptions = { chain: Chain; account: Address | Account; gas?: bigint; maxFeePerGas?: bigint; maxPriorityFeePerGas?: bigint; nonce?: number; }; export type WalletLegacyTransactionOptions = { chain: Chain; account: Address | Account; gas?: bigint; gasPrice?: bigint; nonce?: number; }; //# sourceMappingURL=types.d.ts.map