-
Notifications
You must be signed in to change notification settings - Fork 25
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
Implement the Indexer API #368
Conversation
✅ Deploy Preview for teloscan-stage ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for dev-mainnet-teloscan ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Deploying with Cloudflare Pages
|
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.
overall amazing work, this is really clean. left a few comments and i think i may have found a bug too, details to follow
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as outdated.
This comment was marked as outdated.
Yeah so the problem here is that we do not have an API for testnet or stage yet so you shouldn't look at stage but the mainnet deploy or you'll have weird stuff as we use some mainnet services (API) & testnet ones (the rest). https://deploy-preview-368--dev-mainnet-teloscan.netlify.app/ |
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
…into indexer-api
…into indexer-api
i noticed while using this branch that there are some places where conditional logic is incorrect. i suggest adding this rule to eslintrc.js, |
src/pages/AccountAddress.vue
Outdated
<q-img | ||
v-if="this.contract?.supportedInterfaces.includes('erc20')" | ||
class="coin-icon" | ||
:alt="this.contract.getName() + ' ERC20 token'" |
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.
in general, it can cause problems if you use this
keyword in templates. it should be like :alt="contract.getName() + ' ERC20 token'"
as the this
is automatically inferred. so that should be changed in this whole file's template, as well as in any other templates changed
Merge master
revert handling of custom abi
Any additional changes should be merged into #539 |
Fixes
Unblocks
Blocked by
Description
Replaces RPC by the Indexer API
Adds holders, collections, nfts & allowance tab
Refactors Contract
Improve display on transaction page & table
....
Test scenarios
Checklist: