├── .gitignore ├── README.md ├── bin ├── airdrop ├── get-nft-holder ├── get-nft-holders ├── get-token-holders └── snapshot ├── error-logs └── .gitkeep ├── index.js ├── lib ├── airdrop.js ├── do-snapshot.js ├── get-nft-owner.js ├── get-nft-owners.js ├── get-token-owners.js ├── helpers │ └── log.js └── read-snapshot-dir.js ├── package.json └── success-logs └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xin-Dragons/solana-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xin-Dragons/solana-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /bin/airdrop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xin-Dragons/solana-toolkit/HEAD/bin/airdrop -------------------------------------------------------------------------------- /bin/get-nft-holder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xin-Dragons/solana-toolkit/HEAD/bin/get-nft-holder -------------------------------------------------------------------------------- /bin/get-nft-holders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xin-Dragons/solana-toolkit/HEAD/bin/get-nft-holders -------------------------------------------------------------------------------- /bin/get-token-holders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xin-Dragons/solana-toolkit/HEAD/bin/get-token-holders -------------------------------------------------------------------------------- /bin/snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xin-Dragons/solana-toolkit/HEAD/bin/snapshot -------------------------------------------------------------------------------- /error-logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xin-Dragons/solana-toolkit/HEAD/index.js -------------------------------------------------------------------------------- /lib/airdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xin-Dragons/solana-toolkit/HEAD/lib/airdrop.js -------------------------------------------------------------------------------- /lib/do-snapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xin-Dragons/solana-toolkit/HEAD/lib/do-snapshot.js -------------------------------------------------------------------------------- /lib/get-nft-owner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xin-Dragons/solana-toolkit/HEAD/lib/get-nft-owner.js -------------------------------------------------------------------------------- /lib/get-nft-owners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xin-Dragons/solana-toolkit/HEAD/lib/get-nft-owners.js -------------------------------------------------------------------------------- /lib/get-token-owners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xin-Dragons/solana-toolkit/HEAD/lib/get-token-owners.js -------------------------------------------------------------------------------- /lib/helpers/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xin-Dragons/solana-toolkit/HEAD/lib/helpers/log.js -------------------------------------------------------------------------------- /lib/read-snapshot-dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xin-Dragons/solana-toolkit/HEAD/lib/read-snapshot-dir.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xin-Dragons/solana-toolkit/HEAD/package.json -------------------------------------------------------------------------------- /success-logs/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------