forked from Lilypad-Tech/community-bots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.py
27 lines (22 loc) · 1019 Bytes
/
vars.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import os
# GitHub API URLs for the repositories
GIT_API_URLS = [
"https://api.github.com/repos/Lilypad-Tech/lilypad/issues",
"https://api.github.com/repos/Lilypad-Tech/community-bots/issues"
]
# Discord webhook URL (you can set your actual webhook URL here)
OSS_DISCORD_WEBHOOK = os.getenv('OSS_DISCORD_WEBHOOK')
POW_MONITORING_WEBHOOK = os.getenv('POW_DISCORD_WEBHOOK')
AMBASSADOR_REMINDER_WEBHOOK = os.getenv('AMBASSADOR_REMINDER_DISCORD_WEBHOOK')
# Discord Roles
LILYTEAM_DISCORD_ROLE = "<@&1212902935969669140>"
LILYPAD_ADVOCATE_DISCORD_ROLE = "<@&1255696024161226783>"
# Arbiscan
ARBISCAN_API_KEY = os.getenv('ARBISCAN_API_KEY')
ARBISCAN_API_ENDPOINT = f'https://api-sepolia.arbiscan.io/api'
ARBISCAN_ADDRESS_URL = "https://sepolia.arbiscan.io/address/"
#Lilypad Addresses
POW_CONTRACT_ADDRESS = "0x8b852ba45293d6dd51b10c57625c6c5f25adfb40"
POW_CONTRACT_ADDRESS_METHOD = "0xda8accf9"
POW_SIGNAL_CRON_ADDRESS = "0xd10d15cc705f7d2558352b1212a9b3685155d93d"
POW_SIGNAL_CRON_ADDRESS_METHOD = "0xb681f2fd"