Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: transfer 250k usdc to gitcoin #1552

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions .github/workflows/black.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pip'
- run: pip install --upgrade pip
- run: pip install -r requirements.txt
- run: black . --check --diff
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
cache: "pip"
- run: pip install --upgrade pip
- run: pip install setuptools wheel
- run: pip install -r requirements.txt
- run: black . --check --diff
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# brownie/python/pytest
# brownie/python/pytest/web3
__pycache__
.history
.hypothesis/
Expand All @@ -7,6 +7,7 @@ reports/
.env
*venv*
.pytest_cache
.build/

# editors
.idea/
Expand Down
1 change: 1 addition & 0 deletions helpers/addresses.py
Original file line number Diff line number Diff line change
Expand Up @@ -719,6 +719,7 @@
"quest_board_veliq": "0xcbd27bf506aB5580Ef86Fe6a169449bc24Be471B",
},
},
"gitcoin": {"matching_pools_funds": "0xde21F729137C5Af1b01d73aF1dC21eFfa2B8a0d6"},
"llamapay": "0x3E67cc2C7fFf86d9870dB9D02c43e789B52FB296",
}

Expand Down
10 changes: 10 additions & 0 deletions scripts/issue/1551/pay_gitcoin_grant_budget.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from great_ape_safe import GreatApeSafe
from helpers.addresses import r


def main():
vault = GreatApeSafe(r.badger_wallets.treasury_vault_multisig)
usdc = vault.contract(r.treasury_tokens.USDC)
vault.take_snapshot([usdc])
usdc.transfer(r.gitcoin.matching_pools_funds, 250_000e6)
vault.post_safe_tx()
Loading