-
Notifications
You must be signed in to change notification settings - Fork 226
FAQ and FireFly Tutorial Updates #857
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
Conversation
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.
Just a couple of minor spelling things. Also a couple notes on the FAQs. Up to you, how much you want to incorporate those. Otherwise looks good, thanks!
docs/faqs/faqs.md
Outdated
- A deployment script (two of the most popular deployment tools are [Hardhat](https://hardhat.org/guides/deploying.html) and [Truffle](https://trufflesuite.com/docs/truffle/advanced/networks-and-app-deployment/)) | ||
- Access to a node on your network | ||
|
||
Once your contract is deployed, you can view the contract details through popular blockchain explorers such as [Etherscan](https://etherscan.io/), which will show all transaction interactions with the contract and show any token value associated with the contract. |
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.
It may be worth noting that etherscan.io will only work for public Ethereum. I'm not sure if this will be confusing to someone who is totally new, and manages to deploy their contract to a locally running node.
docs/faqs/faqs.md
Outdated
For additional information about Smart Contracts, please see the official [Ethereum.org documentation](https://ethereum.org/en/developers/docs/smart-contracts/) | ||
|
||
## 🦊 Can I connect FireFly to MetaMask? | ||
Yes! In order to do this, you'll want to set up a FireFly stack and deploy an ERC-20 or ERC-721 contract to the chain (see the FAQ above on how to deploy a smart contract). |
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.
A token factory that can deploy ERC-20 and ERC-721 contracts is deployed by default. After creating a token pool, they could use the contract that is automatically deployed, rather than needing to figure out how to deploy one on their own.
It also looks like the docs build has failed. To test this locally, you can run |
I've made changes based on the comments from Nicko. Running |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #857 +/- ##
==========================================
- Coverage 99.98% 99.96% -0.03%
==========================================
Files 299 302 +3
Lines 19457 19736 +279
==========================================
+ Hits 19455 19730 +275
- Misses 1 5 +4
Partials 1 1 ☔ View full report in Codecov by Sentry. |
Signed-off-by: Nicko Guyer <nicko.guyer@kaleido.io> Signed-off-by: Trevor Scanlon <trevor.scanlon@kaleido.io>
Signed-off-by: Trevor Scanlon <trevor.scanlon@kaleido.io>
Signed-off-by: Trevor Scanlon <trevor.scanlon@kaleido.io>
Signed-off-by: Trevor Scanlon <trevor.scanlon@kaleido.io>
Signed-off-by: Trevor Scanlon <trevor.scanlon@kaleido.io>
Signed-off-by: Trevor Scanlon <trevor.scanlon@kaleido.io>
Signed-off-by: Trevor Scanlon <trevor.scanlon@kaleido.io>
Signed-off-by: Trevor Scanlon <trevor.scanlon@kaleido.io>
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.
Looks good to me, but I'll defer to @nguyer
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.
There's just one section that should be removed, but otherwise looks good. Thanks!
… documentation Signed-off-by: Trevor Scanlon <trevor.scanlon@kaleido.io>
Signed-off-by: Trevor Scanlon <trevor.scanlon@kaleido.io>
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.
Looks good! Thanks @trevorsc19
Signed-off-by: Alex Shorsher <alex.shorsher@kaleido.io>
Two main changes in this PR:
1- FAQ updates. Added some FAQs related to deploying smart contracts, connecting to Metamask, and how FireFly enables multi-chain applications
2- FireFly tutorial updates. Fixed some links to swagger pages that were outdated, updated some instructions, added instructions and screenshots on using the FireFly sandbox in order to follow along some of the examples given in the tutorials