Skip to content

Commit

Permalink
chore: transfer 250k usdc to gitcoin
Browse files Browse the repository at this point in the history
  • Loading branch information
gosuto-inzasheru committed Jul 29, 2024
1 parent dfdde7a commit b55e04b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
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
3 changes: 3 additions & 0 deletions helpers/addresses.py
Original file line number Diff line number Diff line change
Expand Up @@ -719,6 +719,9 @@
"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()

0 comments on commit b55e04b

Please sign in to comment.