github.com/Finschia/finschia-sdk@v0.48.1/README.md (about) 1 The Finschia SDK is a framework for building blockchain applications in Golang. 2 It is being used to build [`Finschia`](https://github.com/Finschia/finschia), the first implementation of the Finschia Mainnet. 3 This is forked from [`cosmos-sdk`](https://github.com/cosmos/cosmos-sdk) at 2021-03-15. 4 5 **WARNING**: Breaking changes may occur because this repository is still in the pre-release development phase. 6 7 **Note**: Requires [Go 1.20+](https://golang.org/dl/) 8 9 ## What is the Finschia SDK? 10 11 The [Finschia SDK](https://github.com/Finschia/finschia-sdk) is an open-source framework for building multi-asset public Proof-of-Stake (PoS) <df value="blockchain">blockchains</df>, as well as permissioned Proof-Of-Authority (PoA) blockchains. Blockchains built with the Cosmos SDK are generally referred to as **application-specific blockchains**. 12 13 The purpose of `Finschia SDK` is to succeed to [the objectives of `Cosmos sdk`](https://github.com/cosmos/cosmos-sdk/blob/master/docs/intro/overview.md) while helping develop blockchains that require faster transaction processing to be applied to reality. 14 15 ## Why the Finschia SDK? 16 17 Cosmos-sdk, which created the philosophy of application-specific blockchain, established its status as a framework for various application blockchain development. `Finschia SDK` inherited this `cosmos-sdk` philosophy, addressing slow transaction processing problem that was difficult for cosmos-sdk to apply in real financial system. Real financial systems require thousands of processing performance per second, with Finschia SDK adding many performance improvements to meet that demand. 18 The following work was carried out to improve performance. 19 20 - Concurrent checkTx, deliverTx 21 - Use [fastcache](https://github.com/victoriametrics/fastcache) for inter block cache and nodedb cache of iavl 22 - Lock granularity enhancement 23 24 In addition, the following functions were added: 25 26 - Virtual machine using `cosmwasm` that makes smart contracts possible to be executed 27 - Use [Ostracon](https://github.com/Finschia/ostracon) as consensus engine instead of `Tendermint` 28 29 30 To learn about Cosmos SDK, please refer [Cosmos SDK Docs](https://github.com/cosmos/cosmos-sdk/blob/master/docs). 31 32 ## Quick Start 33 34 **Build** 35 ``` 36 make build 37 make install 38 39 # you can see the version! 40 simd version 41 ``` 42 43 44 45 **Configure** 46 ``` 47 zsh init_node.sh sim {N(number of nodes), default=1} 48 ``` 49 50 51 52 **Run** 53 ``` 54 # run a node 55 simd start --home ~/.simapp/simapp0 56 57 # If N is larger than 1, run all node. 58 # simapp0 has other nodes as persistant_peer. 59 simd start --home ~/.simapp/simapp0 60 simd start --home ~/.simapp/simapp1 61 ... 62 ``` 63 64 **Visit with your browser** 65 * Node: http://localhost:26657/ 66 * REST: http://localhost:1317/swagger/ 67 68 69 70 ## Follow Guide 71 You can refer to the sample tx commands [here](docs/sample-tx.md). 72 Test different commands to get a broader understanding of Finschia 73