├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── config.ini ├── docker-compose.yml └── genesis.json /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3tea/EOS-Party-Testnet/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3tea/EOS-Party-Testnet/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3tea/EOS-Party-Testnet/HEAD/README.md -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3tea/EOS-Party-Testnet/HEAD/config.ini -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3tea/EOS-Party-Testnet/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3tea/EOS-Party-Testnet/HEAD/genesis.json --------------------------------------------------------------------------------