1- # go-ouroboros-network
1+ # gouroboros
22
33A Go client implementation of the Cardano Ouroboros network protocol
44
@@ -25,7 +25,7 @@ but the node-to-node protocols will also be implemented in time.
2525| LocalTxSubmission | Implemented |
2626| LocalStateQuery | Partly Implemented |
2727| KeepAlive | Implemented |
28- | LocalTxMonitor | Not Implemented |
28+ | LocalTxMonitor | Implemented |
2929
3030## Testing
3131
@@ -55,7 +55,7 @@ and `0755` permissions, which doesn't allow a non-root use to write to it by def
5555### Running ` cardano-cli ` against local ` cardano-node ` instance
5656
5757```
58- $ docker exec -ti go-ouroboros-network_cardano -node_1 sh -c 'CARDANO_NODE_SOCKET_PATH=/ipc/node.socket cardano-cli query tip --testnet-magic 1097911063'
58+ $ docker exec -ti gouroboros_cardano -node_1 sh -c 'CARDANO_NODE_SOCKET_PATH=/ipc/node.socket cardano-cli query tip --testnet-magic 1097911063'
5959```
6060
6161### Building and running the test program
@@ -69,31 +69,31 @@ $ make
6969Run the test program pointing to the UNIX socket (via ` socat ` ) from the ` cardano-node ` instance started above.
7070
7171```
72- $ ./go-ouroboros-network -address localhost:8082 -network testnet ...
72+ $ ./gouroboros -address localhost:8082 -network testnet ...
7373```
7474
7575Run it against the public port in node-to-node mode.
7676
7777```
78- $ ./go-ouroboros-network -address localhost:8081 -ntn -network testnet ...
78+ $ ./gouroboros -address localhost:8081 -ntn -network testnet ...
7979```
8080
8181Test chain-sync (works in node-to-node and node-to-client modes).
8282
8383```
84- $ ./go-ouroboros-network ... chain-sync -start-era byron
84+ $ ./gouroboros ... chain-sync -start-era byron
8585```
8686
8787Test local-tx-submission (only works in node-to-client mode).
8888
8989```
90- $ ./go-ouroboros-network ... local-tx-submission ...
90+ $ ./gouroboros ... local-tx-submission ...
9191```
9292
9393Test following the chain tip in the ` preview ` network.
9494
9595```
96- $ ./go-ouroboros-network -network preview -address preview-node.world.dev.cardano.org:30002 -ntn chain-sync -tip
96+ $ ./gouroboros -network preview -address preview-node.world.dev.cardano.org:30002 -ntn chain-sync -tip
9797```
9898
9999### Stopping the local ` cardano-node ` instance
0 commit comments