npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@chainlink/evm-gauntlet-common

v1.0.1

Published

EVM Gauntlet Common Contracts

Downloads

13,472

Readme

EVM Gauntlet Commands for Chainlink's Common Contracts

AccessController

Deploy Access Controller

Use this command to deploy the LINK token contract. It takes no inputs besides the standard --network flag. Usage: yarn gauntlet access_controller:deploy --network=goerli

Add Access

Add access to the EOA address to the access list on Access Controller contract for future access restrictions Usage: yarn gauntlet access_controller:add_access --network=goerli <0xabc> --addresses=<0x123> Where 0xabc is the address of the AccessController contract, 0x123 is the list of User addresses to be added to the access list

Flags

Deploy

Use this command to deploy the Flags contract. It takes inputs of addressess of lowering and raising AccessControllers, Zero address if dont need to specify Usage: yarn gauntlet flag:deploy --loweringAC=0x0000000000000000000000000000000000000000 --raisingAC=0x0000000000000000000000000000000000000000 --network=goerli

Raise Flags

Raise flags for the address. Usage: yarn gauntlet flag:raise --network=goerli <0xabc> --addresses="[<0x123>,<0x234>]" Where 0xabc is the address of the Flag Contract, 0x123, 0x234 is the list of aggregator addresses to raise the flags.

Ownership

Transfer

Use this command to Transfer the ownership of a contract to another owner. It takes new owner address as input besides the standard --network flag. Usage: yarn gauntlet ownership:transfer_ownership --network=goerli --to=<0x123> <0xabc> where 0x123 is the address of new owner & 0xabc is the address of any contract which implements Ownership interface

Accept

Run by the new Owner to accept the prosposed ownerhip of the contract. It takes no input besides the standard --network flag. Usage: yarn gauntlet ownership:accept_ownership --network=goerli <0xabc> Where 0xabc is the address of the contract for which ownership change is proposed

Aggregator Proxies

Deploy

This command deploys a proxy to the aggregator. It takes an aggregator and accesscontroller address as inputs Usage: yarn gauntlet proxies:deploy --network=goerli --aggregator=<0x123> --accessController=<0x234> where 0x123 is the address of Aggregator contract, 0x234 is the address of the access controller

Propose New Aggregator

Use this command to propose new aggregator contract to the proxy. Usage: yarn gauntlet proxies:propose_aggregator --network=goerli --aggregator=<0x123> <0xabc> where 0x123 is the address of new aggregator address & 0xabc is the address of any Proxy Contract

Confirm New Aggregator

Use this command to confirm the proposed new aggregator contract to the proxy by the proxy owner. Usage: yarn gauntlet proxies:confirm_aggregator --network=goerli --aggregator=<0x123> <0xabc> where 0x123 is the address of proposed new aggregator address & 0xabc is the address of any Proxy Contract