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

Store gas revision #55

Closed
wants to merge 18 commits into from
Closed
Show file tree
Hide file tree
Changes from all 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
6 changes: 6 additions & 0 deletions .env-example
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ CHAIN=tevmmainnet
RETH_CONFIG=/path/to/datadir/config.toml
RETH_RPC_ADDRESS=0.0.0.0
RETH_RPC_PORT=8545
RETH_WS_ADDRESS=0.0.0.0
RETH_WS_PORT=8546
RETH_AUTH_RPC_ADDRESS=127.0.0.1
RETH_AUTH_RPC_PORT=8551
RETH_IPCPATH=/path/to/reth.ipc
RETH_DISCOVERY_PORT=30303
TELOS_ENDPOINT=https://mainnet.telos.net
TELOS_SIGNER_ACCOUNT=rpc.evm
TELOS_SIGNER_PERMISSION=rpc
Expand Down
65 changes: 0 additions & 65 deletions .github/assets/hive/expected_failures_experimental.yaml

This file was deleted.

67 changes: 67 additions & 0 deletions .github/workflows/telos_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
on: [pull_request]

name: Continuous integration

jobs:
# check:
# name: Check
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions-rs/toolchain@v1
# with:
# profile: minimal
# toolchain: stable
# override: true
# - uses: actions-rs/cargo@v1
# with:
# command: check
# args: --workspace
#
test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: test
args: --package reth-node-telos --features telos --test integration testing_chain_sync -- --exact --nocapture

# fmt:
# name: Rustfmt
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions-rs/toolchain@v1
# with:
# profile: minimal
# toolchain: stable
# override: true
# - run: rustup component add rustfmt
# - uses: actions-rs/cargo@v1
# with:
# command: fmt
# args: --all -- --check


# clippy:
# name: Clippy
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions-rs/toolchain@v1
# with:
# profile: minimal
# toolchain: stable
# override: true
# - run: rustup component add clippy
# - uses: actions-rs/cargo@v1
# with:
# command: clippy
# args: --workspace -- -D warnings
75 changes: 35 additions & 40 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ members = [
"crates/storage/storage-api/",
"crates/tasks/",
"crates/telos/node",
"crates/telos/primitives-traits",
"crates/telos/rpc",
"crates/tokio-util/",
"crates/tracing/",
Expand Down Expand Up @@ -568,5 +569,6 @@ test-fuzz = "5"
# telos
reth-node-telos = { path = "crates/telos/node" }
reth-telos-rpc = { path = "crates/telos/rpc" }
reth-telos-primitives-traits = { path = "crates/telos/primitives-traits" }
reth-telos-rpc-engine-api = { path = "crates/telos/rpc-engine-api" }
antelope-client = { git = "https://github.com/telosnetwork/antelope-rs", branch = "finish_table_rows_params" }
antelope-client = { git = "https://github.com/telosnetwork/antelope-rs", branch = "development" }
Loading
Loading