Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Gnoland FAQs #41

Merged
merged 5 commits into from
Dec 14, 2023
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions FAQ.md
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 are intended to be public.
- Because everything is public, importing 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.
ajnavarro marked this conversation as resolved.
Show resolved Hide resolved

### How is the company behind gno.land planning 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.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@moul should we mention that part of the 25% fund will be used to fund an initial faucet for the chain, and used to be reinvested into the chain


### 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.
ajnavarro marked this conversation as resolved.
Show resolved Hide resolved
- 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.