Skip to content

Commit

Permalink
feat!: geth blockchain and hardhat (#105)
Browse files Browse the repository at this point in the history
* feat: geth blockchain

* docs: changed script paths

* feat: build blockchain

* feat: blockchain build refactor

* chore: gitignore update

* fix: console log address instead of object

* fix: json serialization check

* fix: blockchain service check condition

* fix: allow docker vhosts

* fix: allow vhost for geth

* fix: add transaction wait

* fix: erc20 contract address

* fix: bzz token instance init

* feat: verification

* feat: open ws ports

* ci: adjust to the new env

* ci: adjust to the new env

* chore: add libp2p v2 key

* build: use latest stable instead of latest

* feat: update roles

* fix: swap price oracle instead stamp price oracle

* fix: price updater role hash

* build: update bee-js to 6.4.1-pre.1

* build: bump bee-js to 6.6.0
  • Loading branch information
nugaon committed Nov 29, 2023
1 parent 64bdaa8 commit 6d6da0b
Show file tree
Hide file tree
Showing 82 changed files with 13,617 additions and 21,224 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module.exports = {
parserOptions: {
sourceType: 'module',
ecmaVersion: 2018,
project: './tsconfig.test.json',
project: ['./tsconfig.test.json', './orchestrator/tsconfig.json'],
},
env: {
jest: true,
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/publish-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,17 +69,17 @@ jobs:
- uses: actions/cache@v3
id: cache-npm
with:
path: generator/node_modules
key: ${{ runner.os }}-${{ hashFiles('generator/package-lock.json') }}
path: orchestrator/node_modules
key: ${{ runner.os }}-${{ hashFiles('orchestrator/package-lock.json') }}

- name: Install npm deps
if: steps.cache-npm.outputs.cache-hit != 'true'
run: cd ./generator && npm ci
run: cd ./orchestrator && npm ci

- name: Build images
id: build
run: |
cd ./generator
cd ./orchestrator
BUILD_PARAMS=""
if [ $BUILD_IMAGE == 'true' ] ; then
BUILD_PARAMS+=" --build-base-bee --base-bee-commit-hash=$BEE_VERSION"
Expand All @@ -95,7 +95,7 @@ jobs:
- name: Release images
id: release
run: |
cd ./generator
cd ./orchestrator
PUBLISH_PARAMS=""
if [ $LATEST == 'true' ] ; then
PUBLISH_PARAMS+=" --latest"
Expand Down
7 changes: 0 additions & 7 deletions generator/bee-overlay-addresses.json

This file was deleted.

4 changes: 0 additions & 4 deletions generator/contracts/ERC20PresetMinterPauser.sol

This file was deleted.

1 change: 0 additions & 1 deletion generator/contracts/SwapPriceOracle.bytecode

This file was deleted.

168 changes: 0 additions & 168 deletions generator/migrations/1_initial.js

This file was deleted.

0 comments on commit 6d6da0b

Please sign in to comment.