Skip to content

setNonce

Modifies (overrides) the nonce of an account.

Usage

example.ts
import { testClient } from './client'
 
await testClient.setNonce({ 
  address: '0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC',
  nonce: 420
})

Parameters

address

The address of the target account.

await testClient.setNonce({
  address: '0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC', 
  nonce: 420
})

nonce (optional)

  • Type: number

The nonce.

await testClient.setNonce({
  address: '0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC',
  nonce: 420
})