1- # go-cardano-submit-api
1+ # tx-submit-api
2+
23Cardano Transaction Submission API
34
45A simple HTTP API which accepts a CBOR encoded Cardano transaction as a
@@ -10,13 +11,13 @@ The recommended method of using this application is via the published
1011container images.
1112
1213```
13- docker run -p 8090 ghcr.io/cloudstruct/cardano -submit-api:0.11.0
14+ docker run -p 8090 ghcr.io/blinklabs-io/tx -submit-api:0.11.0
1415```
1516
1617Binaries can be executed directly.
1718
1819```
19- ./cardano -submit-api
20+ ./tx -submit-api
2021```
2122
2223### Configuration
@@ -70,12 +71,12 @@ Cardano node configuration:
7071
7172You can connect to either a cardano-node running locally on the host or a
7273container running either ` inputoutput/cardano-node ` or
73- ` cloudstruct /cardano-node` by mapping in the correct paths and setting the
74+ ` blinklabs-io /cardano-node` by mapping in the correct paths and setting the
7475environment variables or configuration options to match.
7576
76- #### Together with cloudstruct /cardano-node in Docker
77+ #### Together with blinklabs-io /cardano-node in Docker
7778
78- Use Docker to run both cardano-node and go-cardano -submit-api with Docker
79+ Use Docker to run both cardano-node and tx -submit-api with Docker
7980volumes for blockchain storage and node-ipc.
8081
8182```
@@ -85,14 +86,14 @@ docker run --detach \
8586 -v node-data:/opt/cardano/data \
8687 -v node-ipc:/opt/cardano/ipc \
8788 -p 3001:3001 \
88- ghcr.io/cloudstruct /cardano-node run
89+ ghcr.io/blinklabs-io /cardano-node run
8990
9091# Start submit-api
9192docker run --detach \
92- --name cardano -submit-api
93+ --name tx -submit-api
9394 -v node-ipc:/node-ipc \
9495 -p 8090:8090 \
95- ghcr.io/cloudstruct/cardano -submit-api
96+ ghcr.io/blinklabs-io/tx -submit-api
9697```
9798
9899#### Using a local cardano-node
@@ -103,10 +104,10 @@ a local cardano-node.
103104```
104105# Start submit-api
105106docker run --detach \
106- --name cardano -submit-api \
107+ --name tx -submit-api \
107108 -v /opt/cardano/ipc:/node-ipc \
108109 -p 8090:8090 \
109- ghcr.io/cloudstruct/cardano -submit-api
110+ ghcr.io/blinklabs-io/tx -submit-api
110111```
111112
112113### Sending transactions
0 commit comments