github GOATNetwork/goat v0.1.1
Testnet3

latest releases: v0.3.3, v0.3.0, v0.3.0-beta...
10 months ago

This is the first release for Testnet3

You can use following docker-compose to participate in the testing

name: testnet3

services:
  geth:
    image: ghcr.io/goatnetwork/goat-geth:v0.1.1
    restart: unless-stopped
    stop_grace_period: 30s
    command:
      - --goat=testnet3
      - --http
      - --http.api=eth,net,web3
      - --http.addr=0.0.0.0
      - --http.vhosts=*
      - --http.corsdomain=*
      - --ws
      - --ws.origins=*
      - --ws.addr=0.0.0.0
      - --ws.api=eth,net,web3
      # Open it if you need an archive node
      # - --gcmode=archive
    volumes:
      - /data/geth:/root/.ethereum
    ports:
      - 8545:8545
      - 8546:8546
    logging:
      driver: local

  goat:
    image: ghcr.io/goatnetwork/goat:v0.1.1
    restart: unless-stopped
    stop_grace_period: 30s
    command:
      - start
      - --goat.geth=/geth/geth.ipc
      - --chain-id=goat-testnet3
      - --grpc.address=0.0.0.0:9090
      - --api.enable
      - --api.address=tcp://0.0.0.0:1317
    ports:
      - 1317:1317
      - 9090:9090
    depends_on:
      - geth
    volumes:
      - /data/goat:/root/.goat
      - /data/geth:/geth
    logging:
      driver: local

Don't miss a new goat release

NewReleases is sending notifications on new releases.