Socket
Socket
Sign inDemoInstall

@nexusmutual/deployments

Package Overview
Dependencies
0
Maintainers
5
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @nexusmutual/deployments

Nexus Mutual deployed contract addresses and abis


Version published
Maintainers
5
Install size
5.29 MB
Created

Readme

Source

Nexus Mutual Deployment

This package contains the abis and addresses of the deployed Nexus Mutual contracts.

Usage

Variables

addresses: Contains addresses of all contracts.

Example:

import { addresses } from '@nexusmutual/deployments';

console.log(addresses.Assessment); // Outputs: 0x0E801D84Fa9...

abis: A map which contains abi definitions for all contracts.

Example:

import { abis } from '@nexusmutual/deployments';

console.log(abis.Assessment); // Outputs: [{ inputs: [{ internalType: "ad...

You can also import them in a treeshakable manner:

import { Assessment as AssessmentAbi } from '@nexusmutual/deployments';

console.log(AssessmentAbi); // Outputs: [{ inputs: [{ internalType: "ad...

Exported ABIs

The addresses and ABIs are also exported as addresses.json and abis/*.json for convenience. These files are located in the dist/data folder. You can reference them directly in node_modules as follows:

node_modules/@nexusmutual/deployments/dist/data/addresses.json

or

node_modules/@nexusmutual/deployments/dist/data/abis/Assessment.json

Building the Package

Run build script:

npm run build:deployments

This script will generate abis and typings for contracts defined by contractList in the build.js file using Hardhat. The script will also auto update the package.json version.

Deploying locally

The script requires two environment variables to run:

# These can be found in .env.sample
ADDRESSES_FILE=./deployments/src/addresses.json
ABI_DIR=./deployments/generated/abis

These variables specify the output location of the generated addresses and ABIs. On these default locations they will be picked up by the build, which can be useful for local development in combination with npm link. See the local development docs for more details.

Keywords

FAQs

Last updated on 03 Jun 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc