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
#! /usr/bin/env python | |
from copy import deepcopy | |
import logging | |
import sys | |
from web3 import Web3 | |
from web3.logs import DISCARD | |
from dfktools.quests.quest_core_v1 import CONTRACT_ADDRESS as QUEST_V1_CONTRACT_ADDRESS | |
from dfktools.quests.quest_core_v1 import ABI as QUEST_V1_ABI |
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
{ | |
"name": "parse_quests_node", | |
"version": "1.0.0", | |
"description": "Parse Defi Kingdoms quest rewards", | |
"main": "parse_dfk_quest.js", | |
"type": "module", | |
"scripts": { | |
"start": "node parse_dfk_quest.js" | |
}, | |
"author": "Athiriyya", |