Skip to content
LogoLogo

getLogs

Returns a list of event logs matching the provided parameters.

Usage

By default, getLogs returns all events. In practice, you must use scoping to filter for specific events.

import {  } from './client'
 
const  = await .()  
 
Output: [{ ... }, { ... }, { ... }]

Scoping

You can also scope to a set of given attributes.

import {  } from 'viem'
import {  } from './client'
 
const  = await .({  
  : '0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266',
  : ('event Transfer(address indexed from, address indexed to, uint256)'),
  : {
    : '0xd8da6bf26964af9d7eed9e03e53415d37aa96045',
    : '0xa5cc3c03994db5b0d9a5eedd10cabab0813678ac'
  },
  : 16330000n,
  : 16330050n
})

By default, event accepts the AbiEvent type:

// @filename: client.ts
import { createPublicClient, http } from 'viem'
import { mainnet } from 'viem/chains'
 
export const publicClient = createPublicClient({
  chain: mainnet,
  transport: http()
})
// @filename: example.ts
// ---cut---
import { publicClient } from './client'
 
const logs = await publicClient.getLogs(publicClient, {
  address: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48',
  event: { 
    name: 'Transfer', 
    inputs: [
      { type: 'address', indexed: true, name: 'from' },
      { type: 'address', indexed: true, name: 'to' },
      { type: 'uint256', indexed: false, name: 'value' }
    ] 
  },
  args: {
    from: '0xd8da6bf26964af9d7eed9e03e53415d37aa96045',
    to: '0xa5cc3c03994db5b0d9a5eedd10cabab0813678ac'
  },
  fromBlock: 16330000n,
  toBlock: 16330050n
})

Address

Logs can be scoped to an address:

import {  } from './client'
 
const  = await .({
  : '0xfba3912ca04dd458c843e2ee08967fc04f3579c2'
})

Event

Logs can be scoped to an event.

The event argument takes in an event in ABI format โ€“ we have a parseAbiItem utility that you can use to convert from a human-readable event signature โ†’ ABI.

import {  } from 'viem'
import {  } from './client'
 
const  = await .({
  : '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48',
  : ('event Transfer(address indexed from, address indexed to, uint256 value)'), 
})

Arguments

Logs can be scoped to given indexed arguments:

import {  } from 'viem'
 
const  = await .({
  : '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48',
  : ('event Transfer(address indexed from, address indexed to, uint256 value)'),
  : { 
    : '0xd8da6bf26964af9d7eed9e03e53415d37aa96045',
    : '0xa5cc3c03994db5b0d9a5eedd10cabab0813678ac'
  }
})

Only indexed arguments in event are candidates for args.

An argument can also be an array to indicate that other values can exist in the position:

import {  } from 'viem'
 
const  = await .({
  : '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48',
  : ('event Transfer(address indexed from, address indexed to, uint256 value)'),
  : { 
    // '0xd8da...' OR '0xa5cc...' OR '0xa152...'
    : [
      '0xd8da6bf26964af9d7eed9e03e53415d37aa96045', 
      '0xa5cc3c03994db5b0d9a5eedd10cabab0813678ac',
      '0xa152f8bb749c55e9943a3a0a3111d18ee2b3f94e',
    ],
  }
})

Block Range

Logs can be scoped to a block range:

import {  } from 'viem'
 
const  = await .({
  : '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48',
  : ('event Transfer(address indexed from, address indexed to, uint256 value)'),
  : 16330000n, 
  : 16330050n
})

Multiple Events

Logs can be scoped to multiple events:

import {  } from 'viem'
 
const  = await .({
  : ([ 
    'event Approval(address indexed owner, address indexed sender, uint256 value)',
    'event Transfer(address indexed from, address indexed to, uint256 value)',
  ]),
})

Note: Logs scoped to multiple events cannot be also scoped with indexed arguments (args).

Strict Mode

By default, getLogs will include logs that do not conform to the indexed & non-indexed arguments on the event. viem will not return a value for arguments that do not conform to the ABI, thus, some arguments on args may be undefined.

import {  } from 'viem' 
 
const  = await .({
  : '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48',
  : ('event Transfer(address indexed from, address indexed to, uint256 value)')
})
 
[0].
 
 
 

You can turn on strict mode to only return logs that conform to the indexed & non-indexed arguments on the event, meaning that args will always be defined. The trade-off is that non-conforming logs will be filtered out.

import {  } from 'viem' 
 
const  = await .({
  : '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48',
  : ('event Transfer(address indexed from, address indexed to, uint256 value)'),
  : true
})
 
[0].
 
 
 

Returns

Log[]

A list of event logs.

Parameters

address

A contract address or a list of contract addresses. Only logs originating from the contract(s) will be included in the result.

const  = await .({
  : '0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266', 
})

event

The event in ABI format.

A parseAbiItem utility is exported from viem that converts from a human-readable event signature โ†’ ABI.

import {  } from 'viem'
 
const  = await .({
  : ('event Transfer(address indexed from, address indexed to, uint256 value)'), 
})

args

  • Type: Inferred.

A list of indexed event arguments.

import {  } from 'viem'
 
const  = await .({
  : ('event Transfer(address indexed from, address indexed to, uint256 value)'),
  : { 
    : '0xd8da6bf26964af9d7eed9e03e53415d37aa96045',
    : '0xa5cc3c03994db5b0d9a5eedd10cabab0813678ac'
  },
})

fromBlock

  • Type: bigint | 'latest' | 'earliest' | 'pending' | 'safe' | 'finalized'

Block to start including logs from. Mutually exclusive with blockHash.

const  = await .({
  : 69420n
})

toBlock

  • Type: bigint | 'latest' | 'earliest' | 'pending' | 'safe' | 'finalized'

Block to stop including logs from. Mutually exclusive with blockHash.

const  = await .({
  : 70120n
})

blockHash

  • Type: '0x${string}'

Block hash to include logs from. Mutually exclusive with fromBlock/toBlock.

const  = await .({
  : '0x4ca7ee652d57678f26e887c149ab0735f41de37bcad58c9f6d3ed5824f15b74d'
})

Live Example

Check out the usage of getLogs in the live Event Logs Example below.

JSON-RPC Method

eth_getLogs