Skip to content

Commit

Permalink
Merge branch 'echidna' of https://github.com/bloxapp/ssv-network into…
Browse files Browse the repository at this point in the history
… echidna
  • Loading branch information
Mohsen-T committed Feb 19, 2024
2 parents d7deb4f + 748adb0 commit 045f5ca
Show file tree
Hide file tree
Showing 57 changed files with 3,418 additions and 26,454 deletions.
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
GOERLI_ETH_NODE_URL=
GOERLI_OWNER_PRIVATE_KEY=
HOLESKY_ETH_NODE_URL=
HOLESKY_OWNER_PRIVATE_KEY=
MAINNET_ETH_NODE_URL=
MAINNET_OWNER_PRIVATE_KEY=
GAS_PRICE=
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Publish npm package

on:
release:
types: [created]

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies
run: npm install

- name: Publish to npm
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ node_modules
.env
.env.prod
.env.stage
#Hardhat files
abis
cache
coverage
coverage.json
artifacts
crytic-export
echidna-corpus
typechain-types/
.openzeppelin/dev-*.json
.openzeppelin/*.json
.DS_Store
.history
.dccache
19 changes: 19 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/.github/
/.vscode/

node_modules
.env
.env.prod
.env.stage
#Hardhat files
cache
coverage
coverage.json
artifacts
typechain-types/
.openzeppelin/dev-*.json
.DS_Store
.history
.dccache

package-lock.json
Loading

0 comments on commit 045f5ca

Please sign in to comment.