commit a9c77e96076c1747f5e0f6e945eb68aecef2b52c Author: arnaucube Date: Fri Jul 24 12:18:21 2020 +0200 initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..efa6859 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# hermez-node +Go implementation of the Hermez node. diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..cc6cdfb --- /dev/null +++ b/go.mod @@ -0,0 +1,8 @@ +module github.com/hermeznetwork/hermez-node + +go 1.14 + +require ( + github.com/ethereum/go-ethereum v1.9.17 + github.com/stretchr/testify v1.6.1 +)