Skip to content

EVM Chain Signatures Contract

The EVM Chain Signatures Contract provides an implementation of the abstract ChainSignatureContract for EVM-compatible blockchains. It allows you to interact with the Chain Signatures contract deployed on EVM chains.

Usage

import { contracts, constants } from 'signet.js'
import { createPublicClient, createWalletClient, http } from 'viem'
import { sepolia } from 'viem/chains'
 
const publicClient = createPublicClient({
  chain: sepolia,
  transport: http(),
})
 
const walletClient = createWalletClient({
  chain: sepolia,
  transport: http(),
})
 
const contract = new contracts.evm.ChainSignatureContract({
  publicClient,
  walletClient,
  contractAddress: constants.CONTRACT_ADDRESSES.ETHEREUM
    .TESTNET_DEV as `0x${string}`,
})

Parameters

ParameterTypeDescription
argsobjectConfiguration options for the contract
args.publicClientPublicClientA Viem PublicClient instance for reading from the blockchain
args.walletClientWalletClientA Viem WalletClient instance for sending transactions
args.contractAddressHexThe address of the deployed ChainSignatures contract
args.rootPublicKey?NajPublicKeyOptional root public key. If not provided, it will be derived from the contract