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
# Check your ARIO Balance in the ARIO Fair Launch Pool | |
1) Navigate to https://www.ao.link/#/entity/rW7h9J9jE2Xp36y4SKn2HgZaOuzRmbMfBRPwrFFifHE?tab=read | |
2) Paste in the following Query, replacing the "Recipient" with your own wallet's public address. | |
{ | |
"process": "rW7h9J9jE2Xp36y4SKn2HgZaOuzRmbMfBRPwrFFifHE", | |
"data": "", | |
"tags": [ | |
{ | |
"name": "Action", |
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
static async verifyReceipt( | |
dependencies: Pick<Arbundles, "stringToBuffer" | "getCryptoDriver" | "deepHash">, | |
receipt: UploadReceiptData, | |
): Promise<boolean> { | |
const { id, deadlineHeight, timestamp, public: pubKey, signature, version } = receipt; | |
const dh = await dependencies.deepHash([ | |
dependencies.stringToBuffer("Bundlr"), | |
dependencies.stringToBuffer(version), | |
dependencies.stringToBuffer(id), | |
dependencies.stringToBuffer(deadlineHeight.toString()), |
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
import Irys from "@irys/sdk"; | |
import fs from "fs"; | |
const wallet = JSON.parse( | |
fs | |
.readFileSync( | |
"NEVERFKNTELLINGYOUDAVIDHACKER.json", | |
) | |
.toString(), | |
); |