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 { createObjectCsvWriter } from 'csv-writer'; | |
const API_KEY = process.env.NEYNAR_API_KEY!; | |
const channelId = "daos"; // Replace with your actual channel ID | |
const limit = 50; | |
let cursor: string | null = null; | |
/** | |
* @usage NEYNAR_API_KEY=<YOUR_API_KEY> npx ts-node --transpile-only index.ts |
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
Hey, I'm 1a35e1-42714653 and I have contributed to the Semaphore V4 Ceremony. | |
The following are my contribution signatures: | |
Circuit # 1 (semaphorev4-1) | |
Contributor # 389 | |
Contribution Hash: 16e908c2 29b8c636 9b1ae147 230a8b52 | |
05da1074 63525d8e 7125e838 0240d521 | |
d3f19c36 81496926 66aac563 2b1507d0 | |
e6b347ad e8620d76 5a466f5c 48475d41 |
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
/** | |
* Source: https://github.com/withfabricxyz/protocol-sdks/blob/main/src/stpv1/subscription.ts | |
*/ | |
// From https://docs.withfabric.xyz/stp/contracts/STPV1ABI | |
import stpV1ABI from './stpv1.json' | |
// Typedef for reference | |
type SubscriberState = { | |
/** The address of the account */ |
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
# This is destructive. Please think before executing. | |
SOME_ARN="your-arn-here" | |
aws sns list-endpoints-by-platform-application --platform-application-arn $SOME_ARN | \ | |
jq -r '.Endpoints[].EndpointArn' | \ | |
xargs -I {} aws sns delete-endpoint --endpoint-arn {} |