Skip to content

Commit

Permalink
chore: update README + update CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dOrgJelli committed Nov 4, 2024
1 parent bd4338f commit a4e0bd6
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .github/workflows/test.yml → .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,18 @@ jobs:
with:
submodules: recursive

- name: Read .nvmrc
run: echo "NVMRC=$(cat .nvmrc)" >> $GITHUB_OUTPUT
id: nvm

- name: Setup Node.js
uses: actions/setup-node@master
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'

- name: Install Node.js dependencies
run: yarn

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
Expand Down
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
## Agent Vault Contracts

### Install

```shell
nvm use && nvm install
```

```shell
yarn
```

### Build

```shell
Expand All @@ -19,4 +29,4 @@ $ ./deploy/base-sepolia.sh <BASESCAN_API_KEY>
```

### Deployments
Base Sepolia: https://sepolia.basescan.org/token/0x462e21229cd5e9b2a86ac8d36ed678e0a2cdcd57
Base Sepolia: https://sepolia.basescan.org/address/0x0D00FE0cd0a5438CCD72bF14690c0783b5f9100F

0 comments on commit a4e0bd6

Please sign in to comment.