Skip to content

Constructor

Creates a new instance of the NEAR Chain Signature Contract.

Usage

import { contracts } from 'signet.js'
import { KeyPair } from '@near-js/crypto'
 
const contract = new contracts.near.ChainSignatureContract({
  networkId: 'testnet',
  contractId: 'chainsig.testnet',
  accountId: 'your-account.testnet',
  keypair: KeyPair.fromString('ed25519:your-private-key'),
})

Parameters

ParameterTypeDescription
argsChainSignatureContractArgsConfiguration options for the contract
args.networkIdNearNetworkIdsThe NEAR network ID ('mainnet', 'testnet', etc.)
args.contractIdChainSignatureContractIdsThe contract ID of the Chain Signatures contract
args.accountId?stringOptional account ID to use for transactions. Defaults to a placeholder account
args.keypair?KeyPairOptional keypair to use for transactions. Defaults to a random keypair
args.rootPublicKey?NajPublicKeyOptional root public key. If not provided, it will be fetched from the contract
args.sendTransactionOptions?SendTransactionOptionsOptional configuration for sending transactions