-
Notifications
You must be signed in to change notification settings - Fork 28
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
Add Gnoland FAQs #41
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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? | ||
ajnavarro marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
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. | ||
waymobetta 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. | ||
waymobetta marked this conversation as resolved.
Show resolved
Hide resolved
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this question relates to state management, and how we cap / prune the state size from getting out of control because contracts are being deployed
Is the official answer we're going with that the state is going to be distributed across different gno chains?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know the official answer, that is something we have to discuss. Maybe @moul can give a better answer for this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The correct approach is to provide a link to an issue where the discussion can be tracked until it is sufficiently completed to be included in the FAQ.
The FAQ should offer concise answers and encourage further exploration by providing URLs to relevant resources such as documentation, blog posts, tweets, issues, and pull requests.