Skip to content

Instantly share code, notes, and snippets.

@ries9112
Last active July 23, 2021 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ries9112/be06574541953bc28115ccf942b21327 to your computer and use it in GitHub Desktop.
Save ries9112/be06574541953bc28115ccf942b21327 to your computer and use it in GitHub Desktop.
Query to find CryptoVoxels Archives. Copy/paste into https://arweave.net/graphql
query {
transactions(
tags: [
{
name: "Content-Type",
values: ["application/zip"]
},
{
name: "Tag-Name",
values: ["CryptoVoxelsArchive"]
}
]
) {
edges {
node {
id
block{
timestamp
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment