We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Application owner should reflect the most up to date owner, because ownership can be transferred after application deployment.
We are only setting the owner that was initially set.
On mainnet: https://squid.subsquid.io/cartesi-rollups-mainnet/graphql
query MyQuery { applications { id owner } }
{ "data": { "applications": [ { "id": "0x0974cc873df893b302f6be7ecf4f9d4b1a15c366", "owner": "0x0e28a8f88c6266df0fe274c15c1d4b27f8b373c0" } ] } }
The correct owner is 0x0000000000000000000000000000000000000000
owner
0x0000000000000000000000000000000000000000
Ethereum mainnet
If we really want to store the correct Application owner we need to track the OwnershipTransferred event of the CartesiDApp.
OwnershipTransferred
CartesiDApp
The text was updated successfully, but these errors were encountered:
brunomenezes
Successfully merging a pull request may close this issue.
🙂 Expected behavior
Application owner should reflect the most up to date owner, because ownership can be transferred after application deployment.
🫠 Actual behavior
We are only setting the owner that was initially set.
🧪 Minimal test case
On mainnet: https://squid.subsquid.io/cartesi-rollups-mainnet/graphql
The correct
owner
is0x0000000000000000000000000000000000000000
🌎 Environment
Ethereum mainnet
✔️ Possible solutions
If we really want to store the correct Application owner we need to track the
OwnershipTransferred
event of theCartesiDApp
.The text was updated successfully, but these errors were encountered: