From 65c6f3bf4f7e65bc6694dd86ef6a0285d4b7d738 Mon Sep 17 00:00:00 2001 From: Antonio Navarro Date: Wed, 5 Jul 2023 09:16:22 +0200 Subject: [PATCH] Add Gnoland FAQs Signed-off-by: Antonio Navarro --- gno.land.faqs.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 gno.land.faqs.md 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.