Created
February 25, 2018 13:13
-
-
Save ralfr/bcac03fbc22c4c7684d283578f995129 to your computer and use it in GitHub Desktop.
Key Reuse Query AQL / Tangle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FOR tx IN txCollection | |
FILTER tx.address == 'ICKPPAYKLMJKCESXQNAYP9EKHHDNIXULDAZERMICWXKKDWJGWTETEKAOQTNZCEVGFLAQIXAC9ULXEU9BC' AND tx.value < 0 | |
SORT tx.bundle | |
LIMIT 1000 | |
RETURN { | |
value: tx.value, | |
bundle: tx.bundle, | |
sig: tx.signatureMessageFragment, | |
hash: tx._key | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment