Contracts
Access contract addresses and ABIs for interacting with Hyperkit smart contracts.
Usage
ContractsExample.ts
import { CONTRACT_ADDRESSES, ERC20_ABI, LIQUIDITY_POOL_ABI } from 'hyperkit';
import { ethers } from 'ethers';
// Access contract address
const poolAddress = CONTRACT_ADDRESSES.LIQUIDITY_POOL;
// Create contract instance
const contract = new ethers.Contract(poolAddress, LIQUIDITY_POOL_ABI, signer);