@mezo-org/orangekit-artifacts
v1.0.0-beta.5-dev.0
Published
Artifacts of OrangeKit contracts deployed to supported networks.
Maintainers
Keywords
Readme
OrangeKit Contracts Artifacts
Artifacts of OrangeKit contracts deployed to supported networks.
The main index.ts file contains ABIs and addresses of contracts generated by
the @wagmi/cli tool, that can be used for type-safe
contracts integration with Viem.
The deployments/ directory contains artifacts of contracts generated by Hardhat.
This is a lightweight package ready for integration, containing just the artifacts,
with no extra dependencies. If for any reason you need access the source code or
other deliverables import the @mezo-org/orangekit-contracts
package.
Usage
- Install the package:
pnpm add @mezo-org/orangekit-artifacts- Initialize Viem contract instance:
import { getContract } from 'viem'
import { orangeKitSafeFactoryConfig } from "@mezo-org/orangekit-artifacts"
const orangeKitSafeFactory = getContract({
...orangeKitSafeFactoryConfig,
client
})