Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: geth blockchain and hardhat #105

Merged
merged 24 commits into from
Nov 29, 2023
Merged
Show file tree
Hide file tree
Changes from 23 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

Loading
Loading