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

Gmet m0.10.0.testnet to master #39

Merged
merged 36 commits into from
Sep 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
de58621
deploy-governance.js: fixed the deploy script
seunghwalee-max Mar 7, 2023
06a6af6
core: Fee in ExecutionResult is big.Int to avoid int64 overflow
trident90 Mar 28, 2023
0c70146
Merge pull request #34 from trident90/dev
jsong1230 Mar 28, 2023
ea6fe71
Merge pull request #32 from seunghwalee-max/fix/deploy_script
jsong1230 Mar 28, 2023
f113fe9
merge go-wemix
sadoci Jul 14, 2023
df1b901
core/types: restored metadium block header format
sadoci Jul 18, 2023
891574d
cmd, core, eth, les, params: add Bokbunja hard fork
sadoci Jul 21, 2023
2cd3c58
metadium/scripts: added Bokbunjs block to genesis template
sadoci Jul 21, 2023
e2e36ea
metadium, Makefile, .gitignore: legacy governance
sadoci Jul 21, 2023
c58d02a
consensus, metadium, miner: enabled Pangyo and Bokbunja
sadoci Jul 21, 2023
4effac3
core/vm: enabled eip 3198 opcodes for base fee
sadoci Jul 25, 2023
cda97b1
metadium/contracts: updated governance contracts
sadoci Aug 3, 2023
577034f
consensus/misc: adjusting base fee from 0
sadoci Aug 10, 2023
0c9cead
metadium, miner: fixes for lint
sadoci Aug 16, 2023
9573695
miner: 2 seconds build interval
sadoci Aug 17, 2023
a2d46c4
miner: removed debug line
sadoci Aug 17, 2023
d5fb55b
metadium/contracts: updated governance contracts
sadoci Aug 31, 2023
ed0f316
consensus/ethash,miner: Fixed issue with coinbase setup.
cp-jhjin Aug 14, 2023
6f17e72
Dockerfile.wemix: fixed go version fetch error
saddoc Aug 15, 2023
789c65b
miner: sets coinbase just after prepareWork
saddoc Aug 15, 2023
8209577
fixed typo
cp-wjhan Sep 6, 2023
6f59f68
metadium: fixed issues during governace upgrade
sadoci Sep 11, 2023
f5631c0
metadium/scripts: default block interval, maxPriorityFeePerGas
sadoci Sep 11, 2023
663f0b8
miner: fixed inconsistent block interval
sadoci Sep 11, 2023
925e43b
metadium: fixed inconsistency during legacy governance upgrade
sadoci Sep 12, 2023
755a7ad
metadium: updated legacy governance checking mechanism
sadoci Sep 12, 2023
0bb7bf8
metadium/contracts: updated governance - 1fc6750dc62c5b65562efc64dcdd…
sadoci Sep 12, 2023
c0ec9b8
metadium: fixed err variable handling in getRegGovEnvContracts
sadoci Sep 12, 2023
b2c9e78
metadium: fixed typo in getMaxPriorityFeePerGas
sadoci Sep 12, 2023
7acff0a
Merge pull request #36 from saddoc/dev-gmet
cp-khs Sep 12, 2023
24cb081
Merge branch 'METADIUM:dev' into dev
cp-wjhan Sep 12, 2023
e5f8381
Merge pull request #38 from cp-wjhan/dev
cp-jhjin Sep 12, 2023
14711c7
Makefile: fixed the docker build flag
cp-jhjin Sep 13, 2023
b601f19
params: Configuration settings for Bokbunja Hard Fork on Testnet
cp-jhjin Sep 13, 2023
22e6475
params: Gmet 0.10.0
cp-jhjin Sep 13, 2023
bbe99d6
core: Configuration settings for Bokbunja Hard Fork on Testnet
cp-jhjin Sep 13, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
41 changes: 21 additions & 20 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
# Lines starting with '#' are comments.
# Each line is a file pattern followed by one or more owners.

# accounts/usbwallet @karalabe
# accounts/scwallet @gballet
# accounts/abi @gballet @MariusVanDerWijden
# cmd/clef @holiman
# cmd/puppeth @karalabe
# consensus @karalabe
# core/ @karalabe @holiman @rjl493456442
# eth/ @karalabe @holiman @rjl493456442
# eth/catalyst/ @gballet
# graphql/ @gballet
# les/ @zsfelfoldi @rjl493456442
# light/ @zsfelfoldi @rjl493456442
# mobile/ @karalabe @ligi
# node/ @fjl @renaynay
# p2p/ @fjl @zsfelfoldi
# rpc/ @fjl @holiman
# p2p/simulations @fjl
# p2p/protocols @fjl
# p2p/testing @fjl
# signer/ @holiman
accounts/usbwallet @karalabe
accounts/scwallet @gballet
accounts/abi @gballet @MariusVanDerWijden
cmd/clef @holiman
cmd/puppeth @karalabe
consensus @karalabe
core/ @karalabe @holiman @rjl493456442
eth/ @karalabe @holiman @rjl493456442
eth/catalyst/ @gballet
eth/tracers/ @s1na
graphql/ @gballet @s1na
les/ @zsfelfoldi @rjl493456442
light/ @zsfelfoldi @rjl493456442
mobile/ @karalabe @ligi
node/ @fjl
p2p/ @fjl @zsfelfoldi
rpc/ @fjl @holiman
p2p/simulations @fjl
p2p/protocols @fjl
p2p/testing @fjl
signer/ @holiman
60 changes: 60 additions & 0 deletions .github/workflows/dev-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: dev-ci

on:
pull_request:
branches:
- dev

jobs:
build_test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19

- name: Build Go-MetadiumX
run: make metadium
- name: Check Build
run: ls -al build/metadium.tar.gz

lint_test:
strategy:
fail-fast: false
matrix:
version: [1.17, 1.18, 1.19]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.version }}

- name: Check Lint
run: make lint

unit_test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19

- name: Check golang Test Cases
run: |
unset ANDROID_HOME
make test-short
59 changes: 59 additions & 0 deletions .github/workflows/dev-cron.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: dev-cron

on:
schedule:
- cron: '0 0 * * *'

jobs:
build_test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
ref: dev

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19

- name: Build Go-Metadium
run: make metadium
- name: Check Build
run: ls -al build/metadium.tar.gz

lint_test:
strategy:
fail-fast: false
matrix:
version: [1.17, 1.18, 1.19]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
ref: dev

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.version }}

- name: Check Lint
run: make lint

unit_test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
ref: dev

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19

- name: Check golang Test Cases
run: |
unset ANDROID_HOME
make test
60 changes: 60 additions & 0 deletions .github/workflows/master-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: master-ci

on:
pull_request:
branches:
- master

jobs:
build_test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19

- name: Build Go-Metadium
run: make metadium
- name: Check Build
run: ls -al build/metadium.tar.gz

lint_test:
strategy:
fail-fast: false
matrix:
version: [1.17, 1.18, 1.19]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.version }}

- name: Check Lint
run: make lint

unit_test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19

- name: Check golang Test Cases
run: |
unset ANDROID_HOME
make test
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,4 @@ vendor/*
# Metadium
/metadium/admin_abi.go
/metadium/governance_abi.go
/metadium/governance_legacy_abi.go
6 changes: 4 additions & 2 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@ run:
skip-dirs-use-default: true
skip-files:
- core/genesis_alloc.go
- metadium/contracts/MetadiumGovernance.js
- metadium/governance_abi.go

linters:
disable-all: true
enable:
- deadcode
# - deadcode
- goconst
- goimports
- gosimple
Expand All @@ -22,7 +24,7 @@ linters:
# - staticcheck
- unconvert
# - unused
- varcheck
# - varcheck

linters-settings:
gofmt:
Expand Down
Loading