Skip to content

Commit

Permalink
ERUP-4 (#295)
Browse files Browse the repository at this point in the history
* Updates to latest frontier

* Add webb mixer, token pallets

* Update version of evm-runtime

* Update package.json

* Update anon to develop

* Bump node types again.

* Update types

* Update types

* Update deps, fix service

* double ref count migration in custom migrations

* Frontier bump, fixes getBlock rpc

* ups

* Up anon

* Add elections phragmen migration

* Use master anon, update frontier tester

* Updates to erup-4 frontier/anon

* compile separately to save time

* precomiples

* Ups to evm 0.26

* Update treasury reward to v3 macros

* use webb-tools/substrate fork

* format

* use edgeware migrations

* fix Council after the upgrade

* Add assets pallet back

* Add NFT pallets, fix runtime, remove warnings

* Extend bounty update period to 30 days

Bounties that have an assigned curator must be refreshed regularly to avoid being slashed. 3 days is too short, 30 days seems appropriate for now.

* Updates to substrate/frontier commits

* Updates deps

* Remove config from dynamic fee

* Add dynamic fee patch

* Remove circleci

* Add github workflow instead of CircleCI

* yml workflow

* Update deps of upgrade tester

* Updates frontier

* Update frontier

* Substrate update

* Add no-reaping feature flag

* Fix feature flags

* Updates package

* add nvmrc

* let's fix the CI

* 2nd try

* 3rd time

* add merkle tree rpc

* Update frontier dep, add curve25519 precompiles

* Add client, rpcs, primitives from moonbeam (#304)

Co-authored-by: Drew Stone <[email protected]>

* Update to new frontier fork w/ minimal changes (#305)

Co-authored-by: Shady Khalifa <[email protected]>

* update webb-anon node with bug fixes

* Updates, add frontier dev account to testnet chainspec

* Upgrade versions of testers.

* Updates, compile with binary search estimation

* Fix warnings

* More warnins

* Pin build to a specific rust version (#301)

subtle-2.4.0 wasn't compiling with the latest nightly release of rust.

* fix toolchain.

* Only emit TreasuryMinting event if there was a treasury reward; update tests (#308)

* Remove frontier tester (#306)

* remove frontier tester, moved out of repo

* Fix ci script

Co-authored-by: Jake Naviasky <[email protected]>
Co-authored-by: Shady Khalifa <[email protected]>
Co-authored-by: Raymond Zhong <[email protected]>
Co-authored-by: JelliedOwl (Paul) <[email protected]>
  • Loading branch information
5 people committed Jun 11, 2021
1 parent 889a363 commit c9874d0
Show file tree
Hide file tree
Showing 165 changed files with 12,428 additions and 17,307 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Rust

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
name: 'Run tests'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Init
run: |
scripts/init-ci.sh
cargo --version
rustc --version
cargo +$WASM_BUILD_TOOLCHAIN --version
rustc +$WASM_BUILD_TOOLCHAIN --version
env:
WASM_BUILD_TOOLCHAIN: nightly-2021-03-15
- name: Cache Cargo
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
~/.cargo/bin
target
key: cargo-cache
- name: Build (with no-reaping)
run: cargo build --release --features no-reaping
- name: Run tests
run: scripts/test.sh
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,7 @@ node_modules
forker-data
beresheet-state.json
build
*yalc*
*yalc*

# IDEs
.vim
Loading

0 comments on commit c9874d0

Please sign in to comment.