Skip to content

Commit

Permalink
to add workflows for simple transfer, erc20, and uniswap on evmos
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanz0g committed Oct 26, 2024
1 parent e9aeeb8 commit b6108c2
Show file tree
Hide file tree
Showing 3 changed files with 96 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/tps-erc20-evmos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Signal Node - Evmos - ERC20

on:
workflow_dispatch:

pull_request:
types:
- opened
- synchronize
- reopened

jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Build Tool
run: |
make build
- name: Build Chain
run: |
git clone -b v20.0.0 https://github.com/evmos/evmos.git
cd evmos
make install
./local_node.sh > chain.log 2>&1 &
while ! nc -z localhost 8546; do sleep 1; done
cd ../../evmchainbench
./bin/evmchainbench run --faucet-private-key 8A36C69D940A92FCEA94B36D0F2928C7A0EE19A90073EDA769693298DFA9603B --sender-count 2 --tx-count 20000 --mempool 2500 -p erc20
32 changes: 32 additions & 0 deletions .github/workflows/tps-single-evmos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Signal Node - Evmos

on:
workflow_dispatch:

pull_request:
types:
- opened
- synchronize
- reopened

jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Build Tool
run: |
make build
- name: Build Chain
run: |
git clone -b v20.0.0 https://github.com/evmos/evmos.git
cd evmos
make install
./local_node.sh > chain.log 2>&1 &
while ! nc -z localhost 8546; do sleep 1; done
cd ../../evmchainbench
./bin/evmchainbench run --faucet-private-key 8A36C69D940A92FCEA94B36D0F2928C7A0EE19A90073EDA769693298DFA9603B --sender-count 2 --tx-count 20000 --mempool 2500
32 changes: 32 additions & 0 deletions .github/workflows/tps-uniswap-evmos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Signal Node - Evmos - Uniswap

on:
workflow_dispatch:

pull_request:
types:
- opened
- synchronize
- reopened

jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Build Tool
run: |
make build
- name: Build Chain
run: |
git clone -b v20.0.0 https://github.com/evmos/evmos.git
cd evmos
make install
./local_node.sh > chain.log 2>&1 &
while ! nc -z localhost 8546; do sleep 1; done
cd ../../evmchainbench
./bin/evmchainbench run --faucet-private-key 8A36C69D940A92FCEA94B36D0F2928C7A0EE19A90073EDA769693298DFA9603B --sender-count 2 --tx-count 20000 --mempool 2500 -p uniswap

0 comments on commit b6108c2

Please sign in to comment.