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 NFT How To #1495

Merged
merged 36 commits into from
Mar 27, 2024
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
1c781ee
ISC - Restructure - Learn and Build (#1415)
lucas-tortora Feb 9, 2024
4c423fe
Fix broken links
Dr-Electron Feb 9, 2024
72e8de4
Isc Restructure - EVM how tos - basic contract, ERC20 , ERC721 and de…
lucas-tortora Feb 20, 2024
eeb9714
Add 'Create Foundry' how-to
Dr-Electron Feb 20, 2024
c026f34
Mint token
Dr-Electron Feb 20, 2024
fca7192
Register token
Dr-Electron Feb 20, 2024
0274a14
Allowance how tos
Dr-Electron Feb 20, 2024
cd6abf2
Custom erc20
Dr-Electron Feb 20, 2024
f7de66e
added article on testing (#1471)
lucas-tortora Feb 20, 2024
e563c2e
Format
Dr-Electron Feb 20, 2024
9871592
Get balance
Dr-Electron Feb 22, 2024
a7cce99
Fix structure
Dr-Electron Feb 22, 2024
d9ad6aa
Add Randomness how-to (#1484)
jlvandenhout Feb 22, 2024
d3dc97b
Add how to withdraw assets to L1
jlvandenhout Feb 24, 2024
f12b361
Format
Dr-Electron Feb 24, 2024
b40436d
Resolve TODOs
Dr-Electron Feb 27, 2024
f11a973
Use tabs (#1492)
jlvandenhout Feb 27, 2024
4d517ed
Remove Truffle (#1493)
jlvandenhout Feb 27, 2024
e460193
Remove Wasp CLI mentions from build (#1494)
jlvandenhout Feb 27, 2024
3b9f0b4
Small fixes
lucas-tortora Feb 27, 2024
c68bd00
fix link
lucas-tortora Feb 27, 2024
3b0bbdd
Small Fixes
lucas-tortora Feb 27, 2024
e2174d6
On... Off... On...
Dr-Electron Feb 27, 2024
aac75f3
Restructure how tos (#1500)
Dr-Electron Feb 28, 2024
fbf7e8f
expand gas and allowance explanations (#1503)
lucas-tortora Mar 4, 2024
fa94b09
Update docs/build/isc/v1.0.0-rc.6/docs/explanations/invocation.md
lucas-tortora Mar 4, 2024
264818c
Apply suggestions from code review
lucas-tortora Mar 7, 2024
188eb42
removed glossary tooltip in sandbox.md
lucas-tortora Mar 7, 2024
f2eca4b
fix typo
lucas-tortora Mar 7, 2024
cfcae20
Rebase on main to sort out conflicts
lucas-tortora Mar 7, 2024
f4142be
HTML be gone
Dr-Electron Mar 11, 2024
2cc336b
Add NFT minting tutorial
Dr-Electron Feb 26, 2024
5df1669
Add usage example
Dr-Electron Feb 27, 2024
797d300
Add sidebar and restructure
Dr-Electron Mar 11, 2024
ed123c7
Merge branch 'main' into nft-how-to
Dr-Electron Mar 25, 2024
b1876d5
Apply suggestions from code review
Dr-Electron Mar 26, 2024
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
Prev Previous commit
Next Next commit
Update docs/build/isc/v1.0.0-rc.6/docs/explanations/invocation.md
  • Loading branch information
lucas-tortora committed Mar 7, 2024
commit fa94b09f6caefd65111bdc14a88f7bb5d937b9bc
2 changes: 1 addition & 1 deletion docs/build/isc/v1.0.0-rc.6/docs/explanations/invocation.md
Original file line number Diff line number Diff line change
@@ -93,7 +93,7 @@ in various decentralized finance (DeFi) applications, where you might allow a sm
tokens to participate in staking, lending, or trading activities. The original token owner can adjust or revoke the
allowance at any time, providing control over how your tokens are used by others.

Any funds sent to the chain via on-ledger requests are credited to the sender's account. If you want a contract to use
Any funds sent to the chain are credited to the sender's account. If you want a contract to use
those funds, you must specify an `Allowance` in the request. Contracts can then claim any of the allowed funds using
the sandbox `TransferAllowedFunds` function.