Rules
Metrics
metric
describe
Creature calculation
for record in query:
if record.gas_all > 20 and record.project_num > 20 and record.opensea_buy > 50:
creature = "EnderDragon"
elif record.polynet_victim > 0 or record.cream_victim > 0 or record.badger_victim > 0 or record.anubis_victim > 0:
creature = "Wither"
elif record.loot_claim > 0 or record.ens_claim > 200:
creature = "Dolphin"
elif record.contract_deploy > 2:
creature = "Enderman"
elif record.eth_deposit > 0:
creature = "IronGolem"
elif record.tx_fail_num / record.tx_num > 0.2:
creature = "Creeper"
elif record.tx_num > 300 and record.project_num > 10:
creature = "Bee"
elif record.opensea_buy >= 5:
creature = "Axolotl"
elif record.tx_num < 50 and 0 < record.project_num <= 5:
creature = "Turtle"
elif record.project_num >= 6:
creature = "Cow"
else:
creature = "Slime"Score calculation
Last updated