Last active
March 1, 2023 10:19
-
-
Save dougpfeffer/692e4c78a7ba9e56108311544a9400f6 to your computer and use it in GitHub Desktop.
NFT Collection Snapshot Generate with Moralis
This file contains 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
# Requires a Moralis API key. | |
# Writes out lists of owners of each token of each contract listed in the `CONTRACTS` array. | |
# Doesn't work on OpenSea contracts. | |
require 'net/http' | |
require 'uri' | |
require 'json' | |
MORALIS_API_KEY = '' | |
# These are the contracts to you want to download. | |
# Note that this WILL NOT work for OpenSea contracts, only contracts that are custom to the given project. | |
# 'Name' is used for your sanity and for generating the CSVs. | |
CONTRACTS = [ | |
{name: 'Turf', address: '0x55d89273143DE3dE00822c9271DbCBD9B44B44C6'} | |
] | |
# Given a contract address an a page (based on Morali's pagination logic), return a batch of holder info. | |
def fetchHolders(contractAddress, page, cursor = nil) | |
url = "https://deep-index.moralis.io/api/v2/nft/#{contractAddress}/owners?chain=eth&format=decimal" | |
owners = [] | |
if cursor | |
url = url + '&cursor=' + cursor | |
end | |
uri = URI.parse(url) | |
request = Net::HTTP::Get.new(uri) | |
request['X-API-Key'] = MORALIS_API_KEY | |
req_options = { | |
use_ssl: uri.scheme == "https", | |
} | |
response = Net::HTTP.start(uri.hostname, uri.port, req_options) do |http| | |
http.request(request) | |
end | |
data = JSON.parse(response.body) | |
return {cursor: data['cursor'], total: data['total'], owners: data['result'].map{|r| r['owner_of']}} | |
end | |
cursor = nil | |
CONTRACTS.each do |c| | |
puts c[:name] | |
page = 0 | |
owners = [] | |
keepGoing = true | |
while true do | |
results = fetchHolders(c[:address], page, cursor) | |
cursor = results[:cursor] | |
owners.concat(results[:owners]) | |
if results[:total] <= owners.length | |
break | |
end | |
puts "Got #{owners.length} of #{results[:total]} ..." | |
page = page + 1 | |
sleep(1) # Be polite | |
end | |
File.write("#{c[:name].downcase.gsub(' ', '-')}.csv", owners.join("\n")) | |
end |
Updated to work with Moralis API updates, and other minor tweaks.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
[root@vibo test]# ruby 11.rb
'Forgotten Runes Wizards Cult
11.rb:27:in
fetchHolders': undefined method
map' for nil:NilClass (NoMethodError)from 11.rb:44:in
block in <main>' from 11.rb:38:in
each'from 11.rb:38:in `
how to solve?