You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
a_bennassar c2bbca4af3
Merge pull request #72 from hermeznetwork/feature/pooll2tx-sig
4 years ago
.github/workflows Remove goarch 386 and go-version 1.13 from GHA 4 years ago
batchbuilder Migrate TxProcessors from BatchBuilder to StateDB 4 years ago
common Add PoolL2Tx verify signature needed methods 4 years ago
coordinator Add tx L1&L2 test generation & keys for TestingFramework 4 years ago
db Add PoolL2Tx verify signature needed methods 4 years ago
eth Add initial structure Coordinator Forge Sequence 4 years ago
log Add log system 4 years ago
node Add initial structure Coordinator Forge Sequence 4 years ago
priceupdater Priceupdater-v0 (#23) 4 years ago
test Add TxCompressedData & V2 with some extra parsers for common 4 years ago
txselector Add tx L1&L2 test generation & keys for TestingFramework 4 years ago
utils Add TxCompressedData & V2 with some extra parsers for common 4 years ago
README.md Integrate TxSelector with StateDB 4 years ago
go.mod Add tx generation lang interpreter 4 years ago
go.sum Add tx generation lang interpreter 4 years ago

README.md

hermez-node Go Report Card Test Status Lint Status GoDoc

Go implementation of the Hermez node.

Test

  • First run a docker instance of the PostgresSQL (where yourpasswordhere should be your password)
POSTGRES_PASS=yourpasswordhere; sudo docker run --rm --name hermez-db-test -p 5432:5432 -e POSTGRES_DB=history -e POSTGRES_USER=hermez -e POSTGRES_PASSWORD="$POSTGRES_PASS" -d postgres && sleep 2s && sudo docker exec hermez-db-test psql -a history -U hermez -c "CREATE DATABASE l2;"
  • Then, run the tests with the password as env var
POSTGRES_PASS=yourpasswordhere go test ./...