Web3 module to interact with the Ethereum blockchain and smart contracts.
Agent Success
Agent success rate when using this tile
67%
Improvement
Agent success rate improvement when using this tile compared to baseline
0.99x
Baseline
Agent success rate without this tile
68%
Summarizes an Ethereum account's state using a JSON-RPC endpoint.
@generates
export type AccountSnapshot = {
address: string; // checksum-normalized address used for all lookups
balanceWei: string; // decimal string balance from the latest finalized block
nonce: number; // transaction count from the latest finalized block
code: string; // 0x-prefixed runtime code ("0x" when none)
storageSlot: {
slot: string; // 0x-prefixed slot identifier used for the lookup
value: string; // 0x-prefixed storage value
};
};
export async function fetchAccountSnapshot(
providerUrl: string,
targetAddress?: string,
slot?: string | number
): Promise<AccountSnapshot>;Provides account and state inspection helpers for Ethereum JSON-RPC nodes.
tessl i tessl/npm-web3-eth@4.8.0docs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10