Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ztgx/abclojure
A Block Chain Application In Clojure Drived by Tendermint
https://github.com/ztgx/abclojure
clojure tendermint
Last synced: 2 days ago
JSON representation
A Block Chain Application In Clojure Drived by Tendermint
- Host: GitHub
- URL: https://github.com/ztgx/abclojure
- Owner: zTgx
- Created: 2021-08-20T17:01:28.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-08-30T03:31:39.000Z (over 3 years ago)
- Last Synced: 2023-03-08T07:46:03.174Z (almost 2 years ago)
- Topics: clojure, tendermint
- Language: Clojure
- Homepage:
- Size: 180 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [abclojure](https://github.com/zTgx/abclojure)
# WIP
A Block Chain Application In Clojure Drived by Tendermint.
---
### How to run
#### first, run abclojure service
```shell
lein run
```#### second, start tendermint
```shell
tendermint init
```
```shell
tendermint node --home "./" --abci "grpc"
```
if all above commands are successd, abclojure is running now!#### and last, let's play.(send a tx first)
```shell
curl -X POST -d '{"tx_id": "1", "echo": "hello"}' "http://localhost:9528"
```
will output a echo string:
```shell
hello, this tx is successed submit to server already.
```---
### License
Copyright 2021 zTgx
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.