-
Notifications
You must be signed in to change notification settings - Fork 96
refactor: add each user tag to the tags #82
refactor: add each user tag to the tags #82
Conversation
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.
few minor tweaks
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.
last few changes
Can someone clearly state API changes here? @JesseTheRobot @mogulx-operates |
Sure, so this just adds an optional |
@joshbenaron this is the the specific use case.
So I'm going to add ANS-110 tags to the manifest with Type "renderer". Updated link because the one I gave you didn't say much ⬇️ https://github.com/mogulx-operates/arweave-standards/blob/ans-111/ans/ANS-111.md Sample query: query {
transactions(
first: 100,
tags: [
{ name: "Type", values: ["renderer"] },
{ name: "Render-For", values: ["blog-post"] },
]) {
edges {
node {
id
owner {
address
}
tags {
name
value
}
}}
}
} |
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.
LGTM
userTags?: {name: string, value: string}[]
to the uploadFolder interface.tags.forEach(t => tags.push(t))
Let me know if you need me to run any tests or any other way I can help get this in there.