This commit is contained in:
aozhiwei 2023-02-22 13:56:26 +08:00
parent 6ba9bfc403
commit 708dfa5c3e

View File

@ -8,6 +8,17 @@ nftTransferTable = []
contracts = lambda : json.load(open('contract.json', 'r'))
resultData = {
'nft_total': 0,
'nft_mint': 0,
'bindbox': {
'hold': 0,
'open': 0
},
'nft_rank': [
]
}
def exportMintTable():
rows = []
with open('mint.raw.csv', 'w', newline='') as f: