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
To add the ability for a user to query CW20 transfers between two accounts. This means that a user should be able to perform the following searches:
In addition the following filters should be able to queries above
Below is an illustrative schema for the problem
type Cw20Transfer @entity { id: ID! timestamp: Timestamp! # indexable from: String! # indexable contract: String! #indexable to: String! #indexable blockHeight: BigInt! # indexable txIndex: Int! msgIndex: Int! amount: BigInt! }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Acceptance Criteria
To add the ability for a user to query CW20 transfers between two accounts. This means that a user should be able to perform the following searches:
In addition the following filters should be able to queries above
Below is an illustrative schema for the problem
The text was updated successfully, but these errors were encountered: