-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: improved aeindexer tutorial content and improved code (#365)
* feat: improved aeindexer tutorial content and improved code * fix: added space between lines for formate the docs
- Loading branch information
1 parent
f602860
commit c72024c
Showing
18 changed files
with
1,977 additions
and
1,697 deletions.
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
8 changes: 8 additions & 0 deletions
8
docs/quick-start/advance-tutorials/nft-indexer/_create_aeindexer.md
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,8 @@ | ||
## Step 2 - Create AeIndexer in AeFinder | ||
- Log in to the AeFinder website. | ||
TestNet: [https://test.aefinder.io/login](https://test.aefinder.io/login) | ||
|
||
- Enter the AeIndexer Name and other information to create a NFT AeIndexer. | ||
<!-- Commenting out missing image references --> | ||
![run-app-success](/img/create-nft-indexer.png) | ||
![create-app](/img/name-nft-indexer.png) |
30 changes: 30 additions & 0 deletions
30
docs/quick-start/advance-tutorials/nft-indexer/_deploy_aeindexer.md
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,30 @@ | ||
## Step 4 - Deploy AeIndexer | ||
- Open the AeIndexer details page and click Deploy. | ||
![deploy](/img/deploy-nft-indexer-template.png) | ||
- Fill out the subscription manifest and upload the DLL file. | ||
1. Subscription manifest: | ||
```json | ||
{ | ||
"subscriptionItems": [ | ||
{ | ||
"chainId": "tDVW", | ||
"startBlockNumber": 151018963, | ||
"onlyConfirmed": false, | ||
"transactions": [], | ||
"logEvents": [ | ||
{ | ||
"contractAddress": "ASh2Wt7nSEmYqnGxPPzp4pnVDU4uhj1XW9Se5VeZcX2UDdyjx", | ||
"eventNames": [ | ||
"Issued", | ||
"Issue" | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} | ||
``` | ||
2. DLL file location: src/NFTAeIndexer/bin/Release/net8.0/NFTAeIndexer.dll | ||
![deploy-2](/img/subscription-nft-indexer.png) | ||
- Click the deploy button to submit deployment information. When the normal processing block information appears on the Logs page at the bottom of the details page, it means that the deployment has been successful and data indexing has started. | ||
![log](/img/logs-nft-indexer.png) |
Oops, something went wrong.