Minor Changes
-
#984
e1032c7b
Thanks @holic! - AddedsignTransaction
&privateKeyToAddress
exports toviem/accounts
entrypoint. -
#1006
7311e201
Thanks @jxom! - Addedfees
tochain
config that includes adefaultPriorityFee
for setting a default priority fee (maxPriorityFeePerGas
) for a chain.import type { Chain } from 'viem' export const example = { // ... fees: { defaultPriorityFee: 1_000_000n, // 0.001 gwei // or async defaultPriorityFee() { // ... some async behavior to derive the fee. } }, // ... } as const satifies Chain
-
#886
fef66bfb
Thanks @jxom! - Added formatter for Optimism transaction receipts (formatl1GasPrice
,l1GasUsed
, etc). -
#886
fef66bfb
Thanks @jxom! - Added entrypoints for chain utilities (viem/chains/utils
) with exports for chain-specific chains, formatters, serializers, and types.Examples:
import { type CeloBlock, type CeloTransaction, type OptimismBlock, type OptimismTransaction, serializeTransactionCelo, } from 'viem/chains/utils'