-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Antonio Navarro <[email protected]>
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
## FAQs | ||
|
||
## Why did we choose go? | ||
|
||
Go, apart from being a super simple and easy to learn language, it has some nice features that fit really well on the smart-contracts world: | ||
- All libraries, packages and app code is intended to be public. | ||
- Because everything is public, import a package is easy and straightforward. | ||
- Go tooling is really good. | ||
|
||
### How are we going to manage the blockchain size? | ||
|
||
This is something still in development, but one of the main ideas is to have several blockchains talking with each other through IBC protocol. | ||
|
||
### How is planning the company behind gno.land to make money? | ||
|
||
25% of genesis tokens will be owned by the company. That will encourage us to keep evolving and improving the ecosystem making it more valuable for the users. Also, we will create some packages and Realms that will be monetized thanks to Proof of Contribution. | ||
|
||
### What is the difference between other smart contract solutions, like solidity? | ||
|
||
- Gno code is interpreted, so all the code is open source and easy to read directly from the blockchain. | ||
- Gno is almost identical to Go, so if you are a Go developer, you can have your first smart contract deployed in no time compared with other languages. |