Skip to content
This repository has been archived by the owner on Oct 9, 2024. It is now read-only.

Commit

Permalink
fix: rename to tenderly cli
Browse files Browse the repository at this point in the history
  • Loading branch information
sakulstra committed Aug 26, 2022
1 parent 11f4fe4 commit 1b37c23
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Aave fork cli
# Aave tenderly cli

## Installation

```sh
npm i -g @bgd-labs/aave-fork-cli
npm i -g @bgd-labs/aave-tenderly-cli
```

## Setup env
Expand All @@ -22,28 +22,28 @@ To store the secrets across sessions you might want to add them to `.bashrc` or

```sh
# help command - will also show short commands not listed here
aave-fork-cli --help
aave-tenderly-cli --help

# create a fork
aave-fork-cli fork
aave-tenderly-cli fork

# keep the fork alive forever
aave-fork-cli fork --keepAlive
aave-tenderly-cli fork --keepAlive

# fork at a specific block (default is latest)
aave-fork-cli fork --block 15415636
aave-tenderly-cli fork --block 15415636

# adjust the networkId of the created fork (defaults to 3030)
aave-fork-cli fork --forkNetworkId 42
aave-tenderly-cli fork --forkNetworkId 42

# execute a pending proposal
aave-fork-cli fork --proposalId 95
aave-tenderly-cli fork --proposalId 95

# create a proposal with existing payload & execute
aave-fork-cli fork --payloadAddress 0x0...
aave-tenderly-cli fork --payloadAddress 0x0...

# deploy a payload, create and execute the proposal
aave-fork-cli fork --artifact ./out/Contract.sol/Contract.json
aave-tenderly-cli fork --artifact ./out/Contract.sol/Contract.json
```

## Local Development
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
{
"name": "@bgd-labs/aave-fork-cli",
"name": "@bgd-labs/aave-tenderly-cli",
"version": "0.0.1",
"description": "",
"main": "main.ts",
"private": false,
"bin": {
"aave-fork-cli": "dist/index.js"
"aave-tenderly-cli": "dist/index.js"
},
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "ncc build ./main.ts -o dist --minify",
"publish:local": "npm run build && npm pack && npm i -g aave-fork-cli-0.0.1.tgz && rm aave-fork-cli-0.0.1.tgz"
"publish:local": "npm run build && npm pack && npm i -g aave-tenderly-cli-0.0.1.tgz && rm aave-tenderly-cli-0.0.1.tgz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bgd-labs/aave-fork-cli.git"
"url": "git+https://github.com/bgd-labs/aave-tenderly-cli.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/bgd-labs/aave-fork-cli/issues"
"url": "https://github.com/bgd-labs/aave-tenderly-cli/issues"
},
"homepage": "https://github.com/bgd-labs/aave-fork-cli#readme",
"homepage": "https://github.com/bgd-labs/aave-tenderly-cli#readme",
"devDependencies": {
"@types/node": "^18.7.13",
"@vercel/ncc": "^0.34.0",
Expand Down

0 comments on commit 1b37c23

Please sign in to comment.