diff --git a/gno.land.faqs.md b/gno.land.faqs.md new file mode 100644 index 0000000..a4cc4a5 --- /dev/null +++ b/gno.land.faqs.md @@ -0,0 +1,21 @@ +## FAQs + +## Why did we chose 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 tokes 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.