Releases: wevm/viem
Releases · wevm/viem
viem@0.1.5
Patch Changes
- #141
450b612
Thanks @unholypanda! - FixedcreatePublicClient
to includegetTransactionCount
viem@0.1.4
viem@0.1.3
viem@0.1.2
viem@0.1.1
viem@0.1.0
viem@0.0.1-alpha.39
viem@0.0.1-alpha.38
viem@0.0.1-alpha.37
viem@0.0.1-alpha.36
Patch Changes
-
#100
6bb8ce4
Thanks @jxom! - Breaking: RenamedrequestAccounts
Wallet Action torequestAddresses
Breaking: Renamed
getAccounts
Wallet Action togetAddresses
-
#100
6bb8ce4
Thanks @jxom! - Added support for Externally Owned Accounts. -
#100
6bb8ce4
Thanks @jxom! - Breaking: Thefrom
argument has been removed from Actions in favour ofaccount
to distinguish between Account types:+ import { getAccount } from 'viem' const [address] = await walletClient.requestAddresses() + const account = getAccount(address) const hash = await walletClient.sendTransaction({ - from: address, + account, to: '0x70997970c51812dc3a010c7d01b50e0d17dc79c8', value: 1000000000000000000n })
Affected actions:
call
estimateGas
sendTransaction
signMessage
estimateContractGas
multicall
readContract
simulateContract
writeContract