Socket
Book a DemoInstallSign in
Socket

@perp/lushan

Package Overview
Dependencies
Maintainers
5
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@perp/lushan

## Local development and testing

latest
npmnpm
Version
0.12.7
Version published
Weekly downloads
2
Maintainers
5
Weekly downloads
 
Created
Source

lushan

Local development and testing

Requirements

You should have Node 12 installed. Use nvm to install it.

Get started

Clone this repository, install NodeJS dependencies, and build the source code:

git clone git@github.com:perpetual-protocol/perp-lushan.git
npm i
npm run build

Since there are some runtime environment dependencies, if the installation failed on your machine, please try a vanilla install instead:

npm run clean
rm -rf node_modules/
rm package-lock.json
npm install
npm run build

Testing

To run all the test cases:

npm run test

Deployment

  • Deploy contracts
export ARBITRUM_RINKEBY_WEB3_ENDPOINT="YOUR_RPC_ENDPOINT"
export ARBITRUM_RINKEBY_DEPLOYER_MNEMONIC="YOUR_MNEMONIC"

# deploy and WILL NOT reuse any existing contracts
npm run clean-deploy:arbitrumRinkeby
# deploy and WILL reuse existing contracts
npm run deploy:arbitrumRinkeby

# only run the specific deployment script
npm run deploy:arbitrumRinkeby -- --tags ClearingHouse
npm run deploy:arbitrumRinkeby -- --tags Pool-vETHvUSD
  • Update CHANGELOG.md

  • Update version of package.json and package-lock.json

  • Verify contracts on Tenderly

    • apply access_key from Tenderly settings
      • the access token on the Tenderly dashboard, under Settings -> Authorization.
    • create a config.yaml file at $HOME/.tenderly/config.yaml and add an access_key field to it:
      access_key: super_secret_access_key
      
    • run export RINKEBY_WEB3_ENDPOINT=YOUR_RPC_ENDPOINT
    • run npm run verify-tenderly:rinkeby
  • Verify what's included in the packed npm package

npm pack
  • Publish npm package
# push tag to trigger "Publish NPM package" workflow
git tag vX.X.X
git push origin --tags

# create GitHub release
gh release create vX.X.X -t "vX.X.X" -F CHANGELOG.md

FAQs

Package last updated on 05 Nov 2021

Did you know?

Socket

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