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
Platform
Timelocks are not used by all platforms. This could be because either:
These platforms should still be included in the project.
type Platform @entity { id: ID! target: [Target]! @derivedFrom(field: "platform") timelock: [Timelock]! @derivedFrom(field: "platform") currentAdmin: String # New field. Ethereum address or null (no admin) usesAdmin: Boolean! # New field. usesTimelock: Boolean! # New field. }
Supported platforms with an admin and without a timelock
where: { usesAdmin: true usesTimelock: false }
Supported platforms with an admin and timelock
where: { usesAdmin: true, usesTimelock: true, }
Supported platforms without an admin
where: { usesAdmin: false }
https://defiwatch.net/admin-key-config-and-opsec/project-reviews
#5
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Abstract
Timelocks are not used by all platforms. This could be because either:
These platforms should still be included in the project.
Schema Update
Example queries
Supported platforms with an admin and without a timelock
Supported platforms with an admin and timelock
Supported platforms without an admin
See also
https://defiwatch.net/admin-key-config-and-opsec/project-reviews
#5
The text was updated successfully, but these errors were encountered: